-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
128 lines (115 loc) · 4.19 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
module.exports = {
extends: [
'airbnb',
'plugin:postcss-modules/recommended',
'plugin:@typescript-eslint/recommended',
],
env: {
browser: true,
jest: true,
},
plugins: [
'react',
'react-hooks',
'import',
'postcss-modules',
'@typescript-eslint',
],
settings: {
'postcss-modules': {
camelCase: 'camelCaseOnly',
},
'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',
'#types': './src/typings',
'#hooks': './src/hooks',
'#remap': './src/vendor/re-map',
},
},
},
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-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 }],
// 'postcss-modules/no-unused-class': [1, { 'camelCase': true }],
// 'postcss-modules/no-undef-class': [1, { 'camelCase': true }],
'postcss-modules/no-unused-class': 'warn',
'postcss-modules/no-undef-class': 'warn',
'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,
// note you must disable the base rule as it can report incorrect errors
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error'],
// note you must disable the base rule as it can report incorrect errors
'no-unused-vars': 'off',
// NOTE: https://github.com/typescript-eslint/typescript-eslint/issues/2077
camelcase: 0,
'react/jsx-props-no-multi-spaces': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-unused-vars': 'warn',
'react/no-unused-state': 'warn',
'react/default-props-match-prop-types': ['warn', {
allowRequiredDefaults: true,
}],
'react/require-default-props': ['warn', { ignoreFunctionalComponents: true }],
'no-shadow': 'off',
'@typescript-eslint/no-shadow': ['error'],
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
},
};