This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.eslintrc
89 lines (85 loc) · 2.16 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
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
{
"extends": [
"airbnb",
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/react",
"prettier/@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["react", "@typescript-eslint"],
"env": {
"browser": true,
"es6": true,
"node": true
},
"rules": {
"comma-dangle": ["error", "never"],
"quotes": 0,
"eol-last": 2,
"no-debugger": 1,
"no-mixed-requires": 0,
"no-underscore-dangle": 0,
"no-multi-spaces": 0,
"no-trailing-spaces": 0,
"no-extra-boolean-cast": 0,
"no-undef": 2,
"no-unused-vars": 2,
"no-var": 2,
"no-param-reassign": 0,
"no-else-return": 0,
"no-console": 0,
"prefer-const": 2,
"new-cap": 0,
"camelcase": 2,
"semi": [2, "always"],
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/react-in-jsx-scope": 2,
"react/require-default-props": 0,
"react/prop-types": 0,
"react/sort-comp": 0,
"react/prefer-stateless-function": 0,
"no-duplicate-imports": 0,
"import/no-unresolved": 0,
"import/no-duplicates": 2,
"import/no-extraneous-dependencies": 0,
"import/prefer-default-export": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx", ".tsx"] }],
"react/forbid-prop-types": [2, { "forbid": ["any"] }],
"react/jsx-props-no-spreading": 0,
"react/state-in-constructor": 0,
"react/destructuring-assignment": 0,
"jsx-a11y/anchor-is-valid": [0],
"no-script-url": [0],
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"implicit-arrow-linebreak": 0
},
"settings": {
"import/resolver": {
"webpack": true,
"babel-module": {
"alias": {
"@components": "./components",
"@containers": "./containers",
"@stores": "./stores",
"@pages": "./pages",
"@common": "./common",
"@utils": "./utils",
"@models": "./models"
}
}
},
"react": {
"version": "detect"
}
},
"globals": {
"gtag": true,
"analytics": true
}
}