-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
75 lines (75 loc) · 2.35 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
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
module.exports = {
extends: [
'eslint:recommended',
'plugin:import/recommended',
'plugin:import/typescript',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'prettier'
],
plugins: ['@typescript-eslint', 'import', 'prettier', 'no-autofix'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: ['./suisei/tsconfig.json', './suisei-dom/tsconfig.json'],
tsconfigRootDir: __dirname,
sourceType: 'module',
ecmaVersion: 'latest',
ecmaFeatures: {
jsx: true,
},
},
rules: {
'@typescript-eslint/no-misused-promises': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'import/first': 'error',
'import/newline-after-import': 'error',
'import/no-default-export': 'error',
'import/no-duplicates': 'error',
'import/order': [
'error',
{
'groups': ['external', 'internal', 'parent', 'index', 'sibling', 'type'],
'newlines-between': 'ignore',
'alphabetize': { order: 'asc', caseInsensitive: false }
}
],
'import/prefer-default-export': 'off',
'camelcase': ['error', { properties: 'never' }],
'class-methods-use-this': 'off',
'curly': ['error', 'all'],
'lines-around-comment': [
'error',
{
beforeBlockComment: false,
afterBlockComment: false,
beforeLineComment: false,
afterLineComment: false,
},
],
'max-len': 'off',
'no-confusing-arrow': 'off',
'no-console': ['error', { allow: ['warn', 'error'] }],
'no-multi-spaces': ['error', { ignoreEOLComments: true }],
'no-tabs': 'error',
'prefer-const': 'off',
'no-autofix/prefer-const': 'error',
'prefer-promise-reject-errors': 'off',
'prettier/prettier': 'error',
'quotes': ['error', 'single', {
avoidEscape: true,
allowTemplateLiterals: false,
}],
'quote-props': ['error', 'consistent']
},
settings: {
'import/internal-regex': '^(?:suisei|suisei-dom|@suisei/|@suisei-dom/)',
'import/resolver': {
typescript: {},
},
},
ignorePatterns: ['dist', 'node_modules'],
};