-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path.eslintrc.cjs
44 lines (44 loc) · 1.37 KB
/
.eslintrc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
plugins: ['svelte3', '@typescript-eslint', 'prefer-arrow-functions'],
// ignorePatterns: ['*.cjs'],
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
settings: {
'svelte3/typescript': () => require('typescript'),
'svelte3/ignore-warnings': (warning) => {
return warning.code === 'unused-export-let';
},
},
globals: {
globalThis: false, // means it is not writeable
},
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020,
},
env: {
browser: true,
es2017: true,
node: true,
},
rules: {
'comma-dangle': 'off',
quotes: ['error', 'single', { avoidEscape: true, allowTemplateLiterals: true }],
// 'no-use-before-define': [
// 'error',
// {
// functions: true,
// classes: true,
// variables: true,
// allowNamedExports: false,
// },
// ],
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-empty-function': 'off',
// 'import/no-duplicates': ['off', {}], // warnings such as duplicate imports in module and source in the same file are to be ignored,
curly: ['error', 'multi-line'],
},
};