This repository has been archived by the owner on Jun 23, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
.eslintrc
61 lines (61 loc) · 1.43 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
{
"parser": "@typescript-eslint/parser",
"extends": [
"airbnb-base",
"plugin:react/recommended",
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["@typescript-eslint"],
"env": {
"browser": true,
"node": true,
"jest": true
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"node": {
"paths": [
"src"
],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"rules": {
"indent": ["error", 2],
"no-console": [1, {
"allow": ["error", "info", "warn"]
}],
"max-len": ["error", 120],
"comma-dangle": ["error", "never"],
"no-trailing-spaces": "error",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"/tests/*.ts",
"/tests/**/*.ts",
"/tests/*.tsx",
"/tests/**/*.tsx"
]
}
],
"semi": ["off"],
"react/jsx-uses-vars": "error",
"@typescript-eslint/semi": ["error"],
"@typescript-eslint/indent": ["error", 2],
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/interface-name-prefix": 0,
"@typescript-eslint/prefer-interface": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-use-before-define": 0
}
}