-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
36 lines (36 loc) · 932 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
35
36
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"eslint-plugin-react"
],
"rules": {
"@typescript-eslint/quotes": "warn",
"no-multiple-empty-lines": [
"warn",
{
"max": 1,
"maxEOF": 0,
"maxBOF": 0
}
],
"no-trailing-spaces": "warn",
"@typescript-eslint/no-unused-var": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"semi": "warn",
"no-extra-semi": "warn"
}
}