-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
45 lines (45 loc) · 1.11 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
module.exports = {
'parser': '@typescript-eslint/parser',
'extends': [
'eslint:recommended',
'prettier',
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'plugin:import/recommended',
'plugin:import/typescript'
],
'plugins': ['@typescript-eslint', 'react', 'import', 'prettier'],
'env': {
'node': true,
'browser': true,
'commonjs': true,
'es6': true,
'jest': true
},
'settings': {
'react': {
'version': 'detect'
}
},
'parserOptions': {
'ecmaFeatures': {
'jsx': true
}
},
'rules': {
'prettier/prettier': 'error',
'indent': ['error', 2, { 'SwitchCase': 1 }],
'linebreak-style': ['error', 'unix'],
'no-console': 'error',
'quotes': ['error', 'single', { 'avoidEscape': true }],
'semi': ['error', 'always'],
'no-unused-vars': 'off',
'no-return-await': 'error',
'import/order': 'error',
'import/no-cycle': 'error',
'import/no-useless-path-segments': 'error',
'import/first': 'error',
'import/newline-after-import': 'error',
'import/no-extraneous-dependencies': 'error'
}
};