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 cf5b576 commit f958b4bCopy full SHA for f958b4b
eslint.config.js
@@ -8,6 +8,17 @@ import typescriptEslintPlugin from '@typescript-eslint/eslint-plugin';
8
export default [
9
jsConfigs.configs.recommended,
10
11
+ {
12
+ ignores: [
13
+ 'node_modules/',
14
+ 'build/',
15
+ '.svelte-kit/',
16
+ '.svelte-kit/output/',
17
+ '.env',
18
+ 'package-lock.json'
19
+ ]
20
+ },
21
+
22
{
23
languageOptions: {
24
parser: typescriptParser,
@@ -23,14 +34,6 @@ export default [
34
console: 'readonly'
35
}
25
36
},
26
- ignores: [
27
- 'node_modules/',
28
- 'build/',
29
- '.svelte-kit/',
30
- '.svelte-kit/output/',
31
- '.env',
32
- 'package-lock.json'
33
- ],
37
rules: {
38
'@typescript-eslint/require-await': 'off',
39
'prettier/prettier': 'error',
0 commit comments