This repository was archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
63 lines (63 loc) · 1.81 KB
/
.eslintrc
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
{
"env": {
"es6": true,
"node": true
},
"globals": {
"React": "writable",
"FormData": "readonly",
"FileReader": "readonly"
},
"parser": "@typescript-eslint/parser",
"extends": [
"airbnb",
"airbnb-typescript",
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"max-len": ["error", { "code": 130, "ignoreStrings": true }],
"no-console": ["warn", { "allow": ["error", "info", "warn"] }],
"no-underscore-dangle": "off",
"no-shadow": "off",
"object-curly-newline": [
"error",
{
"ObjectExpression": { "consistent": true, "multiline": true },
"ObjectPattern": { "consistent": true, "multiline": true }
}
],
"react/jsx-curly-brace-presence": ["warn", { "props": "always" }],
"lines-between-class-members": "off",
"import/prefer-default-export": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "interface",
"format": ["PascalCase"],
"custom": {
"regex": "^I[A-Z]",
"match": true
}
}
],
"@typescript-eslint/explicit-function-return-type": "off",
"jsx-a11y/alt-text": "error"
},
"settings": {
"import/resolver": {
// @xxx load tsconfig.json to eslint...
// thx https://github.com/benmosher/eslint-plugin-import/issues/1485#issuecomment-535351922 🙏
"typescript": {}
}
},
"ignorePatterns": ["doc/*"]
}