generated from wisnia74/openrct2-typescript-mod-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
39 lines (39 loc) · 790 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
37
38
39
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"airbnb-base"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-undef": 0,
"spaced-comment": 0,
"max-len": 0,
"import/extensions": ["error", "always", { "js": "never", "ts": "never" }],
"max-classes-per-file": 0,
"prefer-destructuring": 0,
"no-plusplus": 0,
"no-use-before-define": 0,
"no-param-reassign": 0,
"vars-on-top": 0
},
"settings": {
"import/resolver": {
"node": { "extensions": [".js", ".ts"] }
}
}
}