-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc.json
More file actions
37 lines (37 loc) · 689 Bytes
/
.eslintrc.json
File metadata and controls
37 lines (37 loc) · 689 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
35
36
37
{
"rules": {
"indent": [
2,
"tab"
],
"quotes": [
2,
"double"
],
"semi": [
2,
"always"
],
"complexity": [
2,
22
],
"linebreak-style": 0,
"no-var": 1
},
"parserOptions": {
"sourceType": "module"
},
"ignorePatterns": ["dist-legacy/*","dist/*","docs/*","test/deno/*"],
"globals": {
"define": false,
"describe": false,
"it": false
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": "eslint:recommended"
}