@aliexme/eslint-config 2.0.0 → 2.0.2

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.
@@ -26,6 +26,7 @@ export default [
26
26
  '@stylistic/jsx-newline': 'off',
27
27
  '@stylistic/jsx-one-expression-per-line': 'off',
28
28
  '@stylistic/jsx-props-no-multi-spaces': 'off',
29
+ '@stylistic/jsx-quotes': 'off',
29
30
  '@stylistic/jsx-tag-spacing': 'off',
30
31
  '@stylistic/jsx-wrap-multilines': 'off',
31
32
  '@stylistic/key-spacing': 'off',
@@ -33,6 +34,7 @@ export default [
33
34
  '@stylistic/lines-around-comment': 'off',
34
35
  '@stylistic/max-len': 'off',
35
36
  '@stylistic/member-delimiter-style': 'off',
37
+ '@stylistic/multiline-ternary': 'off',
36
38
  '@stylistic/no-extra-parens': 'off',
37
39
  '@stylistic/no-extra-semi': 'off',
38
40
  '@stylistic/object-curly-spacing': 'off',
package/configs/react.js CHANGED
@@ -1,4 +1,3 @@
1
- import { fixupPluginRules } from '@eslint/compat'
2
1
  // @ts-expect-error Could not find a declaration file for module 'eslint-plugin-react/configs/recommended.js'
3
2
  import eslintPluginReactRecommended from 'eslint-plugin-react/configs/recommended.js'
4
3
  // @ts-expect-error Could not find a declaration file for module 'eslint-plugin-react/configs/jsx-runtime.js'
@@ -42,7 +41,7 @@ export default [
42
41
  },
43
42
  {
44
43
  plugins: {
45
- 'react-hooks': fixupPluginRules(eslintPluginReactHooks),
44
+ 'react-hooks': eslintPluginReactHooks,
46
45
  },
47
46
  rules: {
48
47
  ...eslintPluginReactHooks.configs.recommended.rules,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aliexme/eslint-config",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Set of configs for ESLint",
5
5
  "private": false,
6
6
  "author": "Alexander Smirnov <al.smirnov996@gmail.com>",
@@ -37,20 +37,20 @@
37
37
  "access": "public"
38
38
  },
39
39
  "dependencies": {
40
- "@eslint/compat": "^1.2.0",
40
+ "@eslint/compat": "^1.2.1",
41
41
  "@eslint/eslintrc": "^3.1.0",
42
- "@eslint/js": "^9.12.0",
42
+ "@eslint/js": "^9.13.0",
43
43
  "@stylistic/eslint-plugin": "^2.9.0",
44
44
  "eslint-plugin-import": "^2.31.0",
45
- "globals": "^15.10.0",
46
- "typescript-eslint": "^8.8.0"
45
+ "globals": "^15.11.0",
46
+ "typescript-eslint": "^8.10.0"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "eslint": "^9.0.0",
50
50
  "eslint-config-prettier": "^9.0.0",
51
51
  "eslint-plugin-prettier": "^5.0.0",
52
52
  "eslint-plugin-react": "^7.0.0",
53
- "eslint-plugin-react-hooks": "^4.0.0",
53
+ "eslint-plugin-react-hooks": "^5.0.0",
54
54
  "eslint-plugin-react-native": "^4.0.0",
55
55
  "eslint-plugin-vue": "^9.0.0",
56
56
  "prettier": "^3.0.0"
@@ -78,5 +78,5 @@
78
78
  "optional": true
79
79
  }
80
80
  },
81
- "gitHead": "b8a504e726d4d9ee140e45a422168e491bf6f984"
81
+ "gitHead": "3adfa1f707f5ee6a6f7f9add92feafd68e539ffb"
82
82
  }