-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.eslintrc
34 lines (34 loc) · 795 Bytes
/
.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
{
"extends": [
"greencoast"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"react/jsx-no-bind": "off",
"jsx-quotes": ["error", "prefer-double"],
"one-var": "off",
"max-len": ["warn", {
"code": 120,
"tabWidth": 2,
"ignoreUrls": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreRegExpLiterals": true,
"ignoreComments": true
}],
"no-extra-parens": "off",
"space-before-function-paren": ["error", {
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}],
"react/prop-types": "off",
"react/require-default-props": "off",
"max-statements": "off",
"no-console": "off",
"no-undefined": "off"
}
}