-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
105 lines (95 loc) · 3.29 KB
/
.eslintrc.js
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
module.exports = {
'extends': [
'airbnb',
'plugin:css-modules/recommended',
'plugin:@typescript-eslint/recommended',
],
'env': {
'webextensions': true,
'browser': true,
'jest': true,
},
'plugins': [
'react',
'react-hooks',
'import',
'css-modules',
'@typescript-eslint',
],
'settings': {
'import/resolver': {
'babel-module': {
'root': ['.'],
'extensions': ['.js', '.jsx', '.ts', '.tsx'],
'alias': {
'#components': './src/components',
'#config': './src/config',
'#request': './src/request',
'#resources': './src/resources',
'#schema': './src/schema',
'#ts': './src/ts',
'#utils': './src/utils',
'#views': './src/views',
},
},
},
'react': {
'version': 'detect',
},
},
'parser': '@typescript-eslint/parser',
'parserOptions': {
'ecmaVersion': 2018,
'ecmaFeatures': {
'jsx': true,
},
'sourceType': 'module',
'allowImportExportEverywhere': true,
},
'rules': {
'strict': 0,
'indent': ['error', 4, { 'SwitchCase': 1 }],
'no-unused-vars': [1, { 'vars': 'all', 'args': 'after-used', 'ignoreRestSiblings': false }],
'no-console': 0,
'react/jsx-indent': [2, 4],
'react/jsx-indent-props': [2, 4],
'react/jsx-filename-extension': ['error', {'extensions': ['.js', '.jsx', '.ts', '.tsx'] }],
'react/prop-types': [1, { 'ignore': [], 'customValidators': [], 'skipUndeclared': false }],
'react/forbid-prop-types': [1],
'react/destructuring-assignment': [1, "always", { "ignoreClassFields": true }],
'react/sort-comp': [1, {
order: [
'static-methods',
'constructor',
'lifecycle',
'everything-else',
'render',
],
}],
'jsx-a11y/anchor-is-valid': [ 'error', {
'components': [ 'Link' ],
'specialLink': [ 'to' ],
}],
'import/extensions': ['off', 'never'],
'import/no-extraneous-dependencies': ['error', {'devDependencies': true }],
'css-modules/no-unused-class': [1, { 'camelCase': true }],
'css-modules/no-undef-class': [1, { 'camelCase': true }],
'prefer-destructuring': 'warn',
'function-paren-newline': ['warn', 'consistent'],
'object-curly-newline': [2, {
'ObjectExpression': { 'consistent': true },
'ObjectPattern': { 'consistent': true },
'ImportDeclaration': { 'consistent': true },
'ExportDeclaration': { 'consistent': true },
}],
'jsx-a11y/label-has-for': 'warn',
'@typescript-eslint/no-empty-interface': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'react/no-unused-state': 'warn',
'react/default-props-match-prop-types': ['warn', {
'allowRequiredDefaults': true,
}],
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn'
},
};