@azat-io/eslint-config 2.68.0 → 2.70.0

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.
@@ -41,9 +41,11 @@ async function node(config) {
41
41
  "node/no-unsupported-features/es-builtins": "error",
42
42
  "node/prefer-global/buffer": ["error", "always"],
43
43
  "node/prefer-global/console": ["error", "always"],
44
+ "node/prefer-global/crypto": ["error", "always"],
44
45
  "node/prefer-global/process": ["error", "always"],
45
46
  "node/prefer-global/text-decoder": ["error", "always"],
46
47
  "node/prefer-global/text-encoder": ["error", "always"],
48
+ "node/prefer-global/timers": ["error", "always"],
47
49
  "node/prefer-global/url": ["error", "always"],
48
50
  "node/prefer-global/url-search-params": ["error", "always"],
49
51
  "node/prefer-node-protocol": "error",
@@ -1,5 +1,5 @@
1
1
  import packageJsonPlugin from "eslint-plugin-package-json";
2
- import jsoncParser from "jsonc-eslint-parser";
2
+ import * as jsoncParser from "jsonc-eslint-parser";
3
3
  import depend from "eslint-plugin-depend";
4
4
  function packageJson(_config) {
5
5
  return {
@@ -62,7 +62,7 @@ async function react(config) {
62
62
  "react-hooks-extra/no-direct-set-state-in-use-effect": "error",
63
63
  "react-naming-convention/component-name": "error",
64
64
  "react-naming-convention/context-name": "error",
65
- "react-naming-convention/filename-extension": "error",
65
+ "react-naming-convention/id-name": "error",
66
66
  "react-naming-convention/use-state": "error",
67
67
  "react-perf/jsx-no-jsx-as-prop": "error",
68
68
  "react-perf/jsx-no-new-array-as-prop": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azat-io/eslint-config",
3
- "version": "2.68.0",
3
+ "version": "2.70.0",
4
4
  "description": "ESLint shareable config",
5
5
  "keywords": [
6
6
  "eslint",
@@ -28,43 +28,43 @@
28
28
  ],
29
29
  "dependencies": {
30
30
  "@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
31
- "@vitest/eslint-plugin": "1.6.7",
32
- "astro-eslint-parser": "^1.2.2",
33
- "eslint-config-flat-gitignore": "^2.1.0",
31
+ "@vitest/eslint-plugin": "1.6.9",
32
+ "astro-eslint-parser": "^1.3.0",
33
+ "eslint-config-flat-gitignore": "^2.2.1",
34
34
  "eslint-import-resolver-typescript": "^4.4.4",
35
- "eslint-plugin-astro": "^1.5.0",
35
+ "eslint-plugin-astro": "^1.6.0",
36
36
  "eslint-plugin-de-morgan": "^2.0.0",
37
37
  "eslint-plugin-depend": "^1.4.0",
38
38
  "eslint-plugin-import-x": "^4.16.1",
39
- "eslint-plugin-jsdoc": "^62.5.4",
39
+ "eslint-plugin-jsdoc": "^62.7.0",
40
40
  "eslint-plugin-jsx-a11y": "^6.10.2",
41
- "eslint-plugin-n": "^17.23.2",
42
- "eslint-plugin-package-json": "^0.88.2",
43
- "eslint-plugin-perfectionist": "^5.5.0",
44
- "eslint-plugin-prefer-let": "^4.0.1",
41
+ "eslint-plugin-n": "^17.24.0",
42
+ "eslint-plugin-package-json": "^0.89.1",
43
+ "eslint-plugin-perfectionist": "^5.6.0",
44
+ "eslint-plugin-prefer-let": "^4.1.0",
45
45
  "eslint-plugin-promise": "^7.2.1",
46
46
  "eslint-plugin-qwik": "2.0.0-beta.21",
47
47
  "eslint-plugin-react-compiler": "19.1.0-rc.2",
48
- "eslint-plugin-react-dom": "^2.12.2",
48
+ "eslint-plugin-react-dom": "^2.13.0",
49
49
  "eslint-plugin-react-hooks": "^7.0.1",
50
- "eslint-plugin-react-hooks-extra": "^2.12.2",
51
- "eslint-plugin-react-naming-convention": "^2.12.2",
50
+ "eslint-plugin-react-hooks-extra": "^2.13.0",
51
+ "eslint-plugin-react-naming-convention": "^2.13.0",
52
52
  "eslint-plugin-react-perf": "^3.3.3",
53
- "eslint-plugin-react-web-api": "^2.12.2",
54
- "eslint-plugin-react-x": "^2.12.2",
53
+ "eslint-plugin-react-web-api": "^2.13.0",
54
+ "eslint-plugin-react-x": "^2.13.0",
55
55
  "eslint-plugin-regexp": "^3.0.0",
56
- "eslint-plugin-sonarjs": "^3.0.6",
56
+ "eslint-plugin-sonarjs": "^4.0.0",
57
57
  "eslint-plugin-svelte": "^3.15.0",
58
58
  "eslint-plugin-unicorn": "^63.0.0",
59
- "eslint-plugin-vue": "^10.7.0",
59
+ "eslint-plugin-vue": "^10.8.0",
60
60
  "globals": "^17.3.0",
61
- "jsonc-eslint-parser": "^2.4.2",
62
- "svelte-eslint-parser": "^1.4.1",
63
- "typescript-eslint": "^8.55.0",
64
- "vue-eslint-parser": "^10.2.0"
61
+ "jsonc-eslint-parser": "^3.1.0",
62
+ "svelte-eslint-parser": "^1.5.0",
63
+ "typescript-eslint": "^8.56.1",
64
+ "vue-eslint-parser": "^10.4.0"
65
65
  },
66
66
  "peerDependencies": {
67
- "eslint": ">=9.35.0"
67
+ "eslint": ">=10.0.0"
68
68
  },
69
69
  "engines": {
70
70
  "node": ">=18.0.0"
package/readme.md CHANGED
@@ -167,6 +167,7 @@ This config uses the following plugins:
167
167
 
168
168
  ## See also
169
169
 
170
+ - [@azat-io/ai-config](https://github.com/azat-io/ai-config)
170
171
  - [@azat-io/prettier-config](https://github.com/azat-io/prettier-config)
171
172
  - [@azat-io/stylelint-config](https://github.com/azat-io/stylelint-config)
172
173
  - [@azat-io/typescript-config](https://github.com/azat-io/typescript-config)