-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
36 lines (36 loc) · 810 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
{
"extends": [
"google",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:react/recommended",
"prettier/@typescript-eslint",
"prettier",
"prettier/react"
],
"plugins": [
"@typescript-eslint",
"react",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "warn",
"strict": 0,
"require-jsdoc": "off",
"valid-jsdoc": "off",
"switch-colon-spacing": 0,
"max-len": "off",
"indent": "off",
"no-invalid-this": "off",
"object-curly-spacing": "off",
"react/prop-types": ["error", { "skipUndeclared": true }]
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
}