@fullstacksjs/eslint-config 11.1.14 → 11.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fullstacksjs/eslint-config",
3
- "version": "11.1.14",
3
+ "version": "11.1.16",
4
4
  "license": "MIT",
5
5
  "author": "fullstacks <fullstacksjs@gmail.com>",
6
6
  "description": "fullstacks eslint config",
package/src/index.js CHANGED
@@ -48,7 +48,7 @@ const defaultOptions = {
48
48
  /**
49
49
  * Initialize eslint config
50
50
  *
51
- * @param {import('./index.js').Options} initOptions
51
+ * @param {import('./option.d.ts').Options} initOptions
52
52
  * @param {...(import('eslint').Linter.Config)} extend
53
53
  * @returns {import('eslint').Linter.Config[]}
54
54
  */
@@ -61,7 +61,7 @@ function imports(options = {}) {
61
61
  'import/no-unresolved': ['error', { caseSensitiveStrict: true }],
62
62
  'import/no-useless-path-segments': 'warn',
63
63
  'import/no-webpack-loader-syntax': 'error',
64
- 'import/order': ['warn', { groups: ['builtin', ['external', 'internal'], 'parent', ['sibling', 'index']] }], // collision
64
+ 'import/order': 'off',
65
65
 
66
66
  ...predicate(!options.disableExpensiveRules, {
67
67
  'import/default': 'error',