-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
eslint.config.cjs
77 lines (76 loc) · 2.8 KB
/
eslint.config.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
module.exports = [
{
ignores: [
'**/resemble.jimp.cjs',
'**/lib/resemble/*',
'*/*.d.ts',
'**/dist/*',
'**/build/*',
'**/.next/*',
]
},
{
files: ['**/*.{ts,tsx,js,jsx,cjs,mjs}'],
languageOptions: {
parser: require('@typescript-eslint/parser'),
ecmaVersion: 2020,
sourceType: 'module'
},
plugins: {
'@typescript-eslint': require('@typescript-eslint/eslint-plugin'),
'unicorn': require('eslint-plugin-unicorn'),
'import': require('eslint-plugin-import')
},
rules: {
'quotes': ['error', 'single', { avoidEscape: true }],
'camelcase': ['error', { properties: 'never' }],
'semi': ['error', 'never'],
'indent': ['error', 4],
'eqeqeq': ['error', 'always'],
'prefer-const': 'error',
'no-multiple-empty-lines': ['error', { max: 1, maxEOF: 1 }],
'array-bracket-spacing': ['error', 'never'],
'brace-style': ['error', '1tbs', { allowSingleLine: true }],
'comma-spacing': ['error', { before: false, after: true }],
'no-lonely-if': 'error',
'dot-notation': 'error',
'no-else-return': 'error',
'no-tabs': 'error',
'no-trailing-spaces': ['error', { skipBlankLines: false, ignoreComments: false }],
'no-var': 'error',
'unicode-bom': ['error', 'never'],
'curly': ['error', 'all'],
'object-curly-spacing': ['error', 'always'],
'keyword-spacing': ['error'],
'require-atomic-updates': 'off',
'linebreak-style': ['error', 'unix'],
'unicorn/prefer-node-protocol': ['error'],
// 'import/extensions': ['error', 'ignorePackages'],
'no-restricted-syntax': ['error', 'IfStatement > ExpressionStatement > AssignmentExpression'],
'unicorn/prefer-ternary': 'error',
// TypeScript-specific rules
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
'args': 'all',
'argsIgnorePattern': '^_',
'caughtErrors': 'all',
'caughtErrorsIgnorePattern': '^_',
'destructuredArrayIgnorePattern': '^_',
'varsIgnorePattern': '^_',
'ignoreRestSiblings': true
}
],
'@typescript-eslint/consistent-type-imports': 'error',
'no-undef': 'off',
'no-redeclare': 'off'
}
},
{
files: ['**/*.test.ts'],
rules: {
'dot-notation': 'off'
}
}
]