-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc
More file actions
34 lines (34 loc) · 747 Bytes
/
.eslintrc
File metadata and controls
34 lines (34 loc) · 747 Bytes
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
{
"env": {
"es6": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/indent": ["error", "tab"],
"@typescript-eslint/semi": [
"error",
"always"
],
"@typescript-eslint/quotes": [
"error",
"double"
],
"max-len": [
"warn",
{
"code": 120
}
]
}
}