forked from blackbeltinc/blackbelt-frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
39 lines (39 loc) · 1004 Bytes
/
.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
{
"extends": [
"airbnb",
"airbnb-typescript",
"plugin:prettier/recommended",
"prettier"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-shadow": "off",
"import/prefer-default-export": "off",
"react/jsx-props-no-spreading": "off",
"react/react-in-jsx-scope": "off",
"react/require-default-props": "off",
"react/jsx-no-bind": "off",
"react/prop-types": "off",
"no-console": "off",
"no-alert": "off",
"max-len": [
"warn",
{
"code": 80,
"tabWidth": 2,
"comments": 120,
"ignoreComments": false,
"ignoreTrailingComments": true,
"ignoreUrls": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreRegExpLiterals": true
}
]
}
}