@luxass/eslint-config 4.10.3 → 4.12.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.
- package/README.md +4 -4
- package/dist/index.cjs +1561 -1468
- package/dist/index.d.cts +14003 -13249
- package/dist/index.d.ts +14003 -13249
- package/dist/index.js +1552 -1468
- package/package.json +40 -33
package/README.md
CHANGED
|
@@ -42,8 +42,8 @@ If you still use some configs from the legacy ESLint RC format, you can use the
|
|
|
42
42
|
|
|
43
43
|
```js
|
|
44
44
|
// eslint.config.mjs
|
|
45
|
-
import luxass from "@luxass/eslint-config";
|
|
46
45
|
import { FlatCompat } from "@eslint/eslintrc";
|
|
46
|
+
import luxass from "@luxass/eslint-config";
|
|
47
47
|
|
|
48
48
|
const compat = new FlatCompat();
|
|
49
49
|
|
|
@@ -268,8 +268,8 @@ Since flat config requires us to explicitly provide the plugin names (instead of
|
|
|
268
268
|
| `yaml/*` | `yml/*` | [eslint-plugin-yml](https://github.com/ota-meshi/eslint-plugin-yml) |
|
|
269
269
|
| `ts/*` | `@typescript-eslint/*` | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) |
|
|
270
270
|
| `style/*` | `@stylistic/*` | [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic) |
|
|
271
|
-
| `test/*` | `vitest/*` | [eslint-plugin
|
|
272
|
-
| `react/*` | `@eslint-react/*` | [eslint-plugin
|
|
271
|
+
| `test/*` | `vitest/*` | [@vitest/eslint-plugin](https://github.com/vitest-dev/eslint-plugin-vitest) |
|
|
272
|
+
| `react/*` | `@eslint-react/*` | [@eslint-react/eslint-plugin ](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin) |
|
|
273
273
|
| `react-dom/*` | `@eslint-react/dom/*` | [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) |
|
|
274
274
|
| `react-hooks-extra/*` | `@eslint-react/hooks-extra/*` | [eslint-plugin-react-hooks-extra](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-hooks-extra) |
|
|
275
275
|
| `react-naming-convention/*` | `@eslint-react/naming-convention/*` | [eslint-plugin-react-naming-convention](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-naming-convention) |
|
|
@@ -513,7 +513,7 @@ export default luxass({
|
|
|
513
513
|
|
|
514
514
|
### Editor Specific Disables
|
|
515
515
|
|
|
516
|
-
Some rules are disabled when inside ESLint IDE integrations, namely [`unused-imports/no-unused-imports`](https://www.npmjs.com/package/eslint-plugin-unused-imports) [`test/no-focused-tests`](https://github.com/
|
|
516
|
+
Some rules are disabled when inside ESLint IDE integrations, namely [`unused-imports/no-unused-imports`](https://www.npmjs.com/package/eslint-plugin-unused-imports) [`test/no-focused-tests`](https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/no-focused-tests.md)
|
|
517
517
|
|
|
518
518
|
This is to prevent unused imports from getting removed by the IDE during refactoring to get a better developer experience. Those rules will be applied when you run ESLint in the terminal or [Lint Staged](#lint-staged). If you don't want this behavior, you can disable them:
|
|
519
519
|
|