-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
97 lines (95 loc) · 2.34 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
const isProduction = process.env.NODE_ENV === 'production';
const off = 0;
const warn = 1;
const error = 2;
module.exports = {
extends: [
'eslint:recommended',
'airbnb',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:@typescript-eslint/recommended',
],
plugins: [
'babel',
'import',
'jsx-a11y',
'react',
'@typescript-eslint'
],
env: {
es6: true,
node: true,
browser: true,
},
globals: {
'$Diff': true,
},
rules: {
'comma-dangle': [
error,
{
arrays: 'always-multiline',
objects: 'always-multiline',
imports: 'always-multiline',
exports: 'always-multiline',
functions: 'only-multiline',
},
],
'consistent-return': off,
'import/default': off,
'import/extensions': off,
'import/named': off,
'import/namespace': off,
'import/no-cycle': off,
'import/no-deprecated': off,
'import/no-duplicates': off,
'import/no-extraneous-dependencies': off,
'import/no-named-as-default': off,
'import/no-named-as-default-member': off,
'import/no-self-import': off,
'import/no-useless-path-segments': off,
'import/no-unresolved': off,
'import/order': off,
'import/prefer-default-export': off,
indent: error,
'jsx-a11y/alt-text': off,
'max-len': [error, 150, { ignoreComments: true }],
'no-console': off,
'no-multiple-empty-lines': [error, { max: error, maxEOF: error }],
'no-unused-vars': off,
'quotes': [error, 'single'],
'react/destructuring-assignment': off,
'react/jsx-filename-extension': [error, { extensions: ['.tsx'] }],
'react/jsx-props-no-spreading': off,
'react/prop-types': off,
'react/state-in-constructor': off,
'@typescript-eslint/indent': off,
'@typescript-eslint/no-unused-vars': [error, { ignoreRestSiblings: true }],
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2020,
ecmaFeatures: {
jsx: true,
},
jsx: true,
project: './tsconfig.dev.json',
sourceType: 'module',
tsconfigRootDir: '.',
useJSXTextNode: true,
},
overrides: [],
settings: {
react: {
pragma: 'React',
version: 'detect',
},
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.json', '.ts', '.tsx']
},
typescript: {},
},
},
};