-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
70 lines (68 loc) · 1.59 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
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
settings: {
react: { version: '16.7' },
},
extends: [
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'prettier/react',
'prettier/@typescript-eslint',
],
parser: '@typescript-eslint/parser',
overrides: [
{
files: ['**/*.tsx'],
rules: {
'react/prop-types': 'off',
},
},
{
files: ['src/**/*'],
extends: [
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'prettier/react',
'prettier/@typescript-eslint',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 12,
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
},
},
],
rules: {
'linebreak-style': ['error', 'unix'],
curly: 2,
'no-var': 2,
'prefer-const': 2,
'dot-notation': ['error', { allowPattern: '^_' }],
'lines-between-class-members': [
'error',
'always',
{ exceptAfterSingleLine: true },
],
'object-shorthand': 'error',
'arrow-body-style': 2,
eqeqeq: 2,
'@typescript-eslint/explicit-function-return-type': 'off',
'prefer-template': 1,
'@typescript-eslint/no-explicit-any': 1,
'@typescript-eslint/no-inferrable-types': [
'warn',
{
ignoreParameters: true,
},
],
'react/self-closing-comp': 2,
'react/jsx-tag-spacing': ['error'],
'no-unused-expressions': 2,
},
};