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.
1 parent 001cf70 commit abb563dCopy full SHA for abb563d
packages/eslint-plugin-svelte/eslint.config.mjs
@@ -123,13 +123,19 @@ const config = [
123
'yml/no-tab-indent': 'off'
124
}
125
},
126
-
127
{
128
files: ['tests/**'],
129
rules: {
130
'@typescript-eslint/no-misused-promises': 'off',
131
'@typescript-eslint/no-require-imports': 'off'
132
+ },
133
+ {
134
+ files: ['eslint.config.mjs'],
135
+ rules: {
136
+ // Some ESLint plugins specify in repository root's package.json, so this rule should be disabled.
137
+ 'n/no-extraneous-import': 'off'
138
+ }
139
140
];
141
export default config;
0 commit comments