@eslint-react/eslint-plugin 5.6.1-next.0 → 5.6.1-next.1

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/README.md CHANGED
@@ -133,6 +133,8 @@ export default defineConfig(
133
133
  Enable rules for React DOM.
134
134
  - `web-api`\
135
135
  Enable rules for interacting with Web APIs.
136
+ - `naming-convention`\
137
+ Enable rules for naming conventions.
136
138
 
137
139
  ### General Purpose
138
140
 
@@ -167,6 +169,8 @@ export default defineConfig(
167
169
  Disable rules in the `dom` preset.
168
170
  - `disable-web-api`\
169
171
  Disable rules in the `web-api` preset.
172
+ - `disable-naming-convention`\
173
+ Disable rules in the `naming-convention` preset.
170
174
  - `disable-experimental`\
171
175
  Disable rules that have an "🧪 Experimental" feature flag.
172
176
  - `disable-type-checked`\
package/dist/index.js CHANGED
@@ -447,7 +447,7 @@ const settings = { ...settings$1 };
447
447
  //#endregion
448
448
  //#region package.json
449
449
  var name = "@eslint-react/eslint-plugin";
450
- var version = "5.6.1-next.0";
450
+ var version = "5.6.1-next.1";
451
451
 
452
452
  //#endregion
453
453
  //#region src/utils/type-of.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eslint-react/eslint-plugin",
3
- "version": "5.6.1-next.0",
3
+ "version": "5.6.1-next.1",
4
4
  "description": "The all-in-one, blazing fast ESLint plugin for React. Get complete, out-of-the-box rule coverage with instant feedback.",
5
5
  "keywords": [
6
6
  "react",
@@ -42,13 +42,13 @@
42
42
  "dist"
43
43
  ],
44
44
  "dependencies": {
45
- "@eslint-react/shared": "5.6.1-next.0",
46
- "eslint-plugin-react-dom": "5.6.1-next.0",
47
- "eslint-plugin-react-jsx": "5.6.1-next.0",
48
- "eslint-plugin-react-rsc": "5.6.1-next.0",
49
- "eslint-plugin-react-naming-convention": "5.6.1-next.0",
50
- "eslint-plugin-react-web-api": "5.6.1-next.0",
51
- "eslint-plugin-react-x": "5.6.1-next.0"
45
+ "@eslint-react/shared": "5.6.1-next.1",
46
+ "eslint-plugin-react-jsx": "5.6.1-next.1",
47
+ "eslint-plugin-react-dom": "5.6.1-next.1",
48
+ "eslint-plugin-react-rsc": "5.6.1-next.1",
49
+ "eslint-plugin-react-web-api": "5.6.1-next.1",
50
+ "eslint-plugin-react-naming-convention": "5.6.1-next.1",
51
+ "eslint-plugin-react-x": "5.6.1-next.1"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/react": "^19.2.14",