-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
106 lines (106 loc) · 2.55 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
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
sourceType: 'module',
ecmaFeatures: {
jsx: true
}
},
extends: [
'eslint:recommended',
'airbnb',
'prettier',
'plugin:@typescript-eslint/recommended',
'plugin:import/typescript'
],
env: {
es6: true,
node: true,
browser: true
},
plugins: ['prettier', 'import', '@typescript-eslint', 'unused-imports'],
rules: {
'@typescript-eslint/no-explicit-any': [
'error',
{
fixToUnknown: true,
ignoreRestArgs: false
}
],
'@typescript-eslint/quotes': [
'error',
'single',
{
allowTemplateLiterals: true
}
],
'@typescript-eslint/no-use-before-define': 'error',
'require-await': 'error',
'prettier/prettier': [
'error',
{
singleQuote: true,
semi: true,
trailingComma: 'none'
}
],
'react/jsx-filename-extension': ['error', { extensions: ['.tsx'] }],
'react/destructuring-assignment': 0,
'react/prop-types': 0,
'react/prefer-stateless-function': 0,
'react/react-in-jsx-scope': 0,
'react/jsx-props-no-spreading': 0,
'react/jsx-curly-newline': 0,
'react/jsx-wrap-multilines': [
'error',
{ arrow: true, return: true, declaration: true }
],
'spaced-comment': ['error', 'always'],
'unused-imports/no-unused-imports': 'error',
'no-underscore-dangle': 0,
'no-unused-expressions': ['error', { allowShortCircuit: true }],
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-alert': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-plusplus': 0,
'class-methods-use-this': 0,
'max-len': [
'warn',
{
code: 120,
tabWidth: 2,
comments: 1000,
ignoreComments: true,
ignoreTrailingComments: true,
ignoreUrls: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
ignoreRegExpLiterals: true
}
],
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never'
}
]
},
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx']
},
'import/resolver': {
typescript: {
alwaysTryTypes: true,
project: ['./tsconfig.json']
},
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx']
}
}
}
};