-
Notifications
You must be signed in to change notification settings - Fork 8
/
.eslintrc.js
38 lines (38 loc) · 973 Bytes
/
.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
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'react',
'i18next'
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
"plugin:react/recommended"
],
parserOptions: {
ecmaFeatures: {
jsx: true
}
},
settings: {
react: {
version: "detect"
}
},
rules: {
"@typescript-eslint/no-var-requires": "warn",
"react/no-deprecated": "warn",
"react/no-unescaped-entities": "warn",
"no-irregular-whitespace": "warn",
"no-empty": ["error", {
allowEmptyCatch: true
}],
"react/display-name": "warn",
"i18next/no-literal-string": ["error", {
markupOnly: true,
ignoreAttribute: ["color", "widths", "icon", "iconPosition", "inline", "name", "inputID", "to", "path", "size", "as", "floated", "verticalAlign", "textAlign", "position", "href", "target", "axis", "lockAxis", "link"]
}]
}
};