Skip to content

Commit 372bade

Browse files
committed
Exclude __testfixtures__ folders from linting
1 parent 13a63f8 commit 372bade

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codemods/eslint.config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import prettierConfig from 'eslint-config-prettier'
33
import { config, configs, parser } from 'typescript-eslint'
44

55
const ESLintConfig = config(
6-
{ name: 'ignores', ignores: ['**/dist/'] },
6+
{ name: 'ignores', ignores: ['**/dist/', '**/__testfixtures__/'] },
77
{ name: 'javascript', ...js.configs.recommended },
88
...configs.recommended,
99
...configs.stylistic,

0 commit comments

Comments
 (0)