-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc
46 lines (46 loc) · 1.14 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
{
"extends": ["eslint:recommended", "google"],
"parser": "@typescript-eslint/parser",
"plugins": ["prettier"],
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ts"],
"paths": ["src", "node_modules"]
}
}
},
"overrides": [
{
"files": ["**/*.ts"],
"rules": {
"react/prop-types": "off"
}
}
],
"rules": {
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/camelcase": [0],
"object-curly-newline": "off",
"jsx-a11y/media-has-caption": "off",
"no-underscore-dangle": "off",
"prettier/prettier": "error",
"@typescript-eslint/indent": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"import/extensions": "off",
"semi": "off",
"no-undef": "off",
"require-jsdoc": "off",
"no-unused-vars": "off",
"indent": "off",
"object-curly-spacing": "off",
"max-len": "off",
"operator-linebreak": "off",
"new-cap": "off",
"quote-props": "off",
"no-constant-condition": "off",
"prefer-rest-params": "off",
"no-unreachable": "off",
"no-trailing-spaces": "off"
}
}