-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
136 lines (128 loc) · 3.1 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
129
130
131
132
133
134
135
136
module.exports = {
env: {
es6: true,
node: true,
browser: true,
jest: true,
},
extends: [
'airbnb',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/eslint-recommended',
'prettier',
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'prettier'],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
ecmaFeatures: {
impliedStrict: true,
jsx: true,
},
},
rules: {
// Max line-length is 120.
'max-len': [
'error',
{
code: 120,
ignoreUrls: true,
},
],
// Disable multiline expressions and lines that start with `[` or `(`.
'no-unexpected-multiline': 'error',
// Allow setting square bracket notation.
'dot-notation': 'off',
// Allow devDependencies for production code (especially tests).
'import/no-extraneous-dependencies': 'off',
// Override some JSX/React rules.
'jsx-a11y/anchor-is-valid': 'off',
'react/jsx-closing-tag-location': 'off',
'react/jsx-curly-brace-presence': 'off',
'react/jsx-filename-extension': [
'error',
{
extensions: ['.js', '.jsx', '.tsx'],
},
],
'react/jsx-one-expression-per-line': 'off',
'react/jsx-props-no-spreading': 'off',
'react/prop-types': 'off',
'react/static-property-placement': 'off',
'@typescript-eslint/explicit-function-return-type': ['off'],
'spaced-comment': [
'error',
'always',
{
markers: ['/'],
},
],
'jsx-a11y/label-has-for': [
2,
{
required: {
every: ['id'],
},
},
],
},
settings: {
'import/resolver': {
node: {
paths: ['src'],
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
typescript: {},
},
'import/extensions': ['.js', '.mjs', '.jsx', '.ts', '.tsx'],
},
overrides: [
{
files: ['**/*.ts', '**/*.tsx'],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
// typescript-eslint specific options
warnOnUnsupportedTypeScriptVersion: true,
},
rules: {
// Allow `.ts` and `.tsx` extensions to be omitted
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
mjs: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never',
},
],
// Allow unused variables that starts with, or is `_`
'@typescript-eslint/no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
},
],
// Allow camelcase.
'@typescript-eslint/camelcase': 'off',
// No need to add return type for functions, it's inferred already.
'@typescript-eslint/explicit-function-return-type': ['off'],
},
},
{
files: ['.eslintrc.js'],
parserOptions: {
sourceType: 'script',
},
env: {
node: true,
},
},
],
};