-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy path.eslintrc.json
62 lines (62 loc) · 1.62 KB
/
.eslintrc.json
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
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "i18next", "no-only-tests"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": ["./tsconfig.json"]
},
"ignorePatterns": ["*.cjs", "framework/publish/"],
"extends": [
"eslint:recommended",
"plugin:jsx-a11y/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:prettier/recommended",
"plugin:i18next/recommended"
],
"rules": {
"eqeqeq": ["error", "always"],
"semi": ["error", "always"],
"no-only-tests/no-only-tests": "error",
"react/react-in-jsx-scope": "off",
"no-console": "error",
"jsx-a11y/no-autofocus": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"varsIgnorePattern": "^_",
"argsIgnorePattern": "^_",
"ignoreRestSiblings": true,
"destructuredArrayIgnorePattern": "^_"
}
],
"i18next/no-literal-string": [
"error",
{
"mode": "jsx-only",
"jsx-attributes": {
"include": [
"label",
"placeholderText",
"placeholder",
"helperText",
"description",
"title",
"subtitle"
]
}
}
],
"no-restricted-exports": ["error", { "restrictDefaultExports": { "direct": true } }]
},
"root": true,
"settings": {
"react": {
"version": "detect"
}
}
}