We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
eslint.config.mts
@reduxjs/rtk-codemods
1 parent bd15126 commit 71bb4abCopy full SHA for 71bb4ab
packages/rtk-codemods/eslint.config.mts
@@ -1,11 +1,6 @@
1
-{
2
- "env": { "node": true },
3
- "extends": ["eslint:recommended"],
4
- "ignorePatterns": ["node_modules"],
5
- "parserOptions": { "ecmaVersion": "latest" },
6
- "plugins": ["node"],
7
- "rules": {
8
- "no-unused-vars": [0],
9
- "eol-last": [0]
10
- }
11
-}
+import { createESLintConfig } from '@reduxjs/eslint-config'
+
+export default createESLintConfig([
+ { ignores: ['**/__testfixtures__/'] },
+ { rules: { '@typescript-eslint/array-type': [0] } }
+])
0 commit comments