forked from heremaps/xyz-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
35 lines (34 loc) · 885 Bytes
/
.eslintrc.js
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
module.exports = {
"extends": "google",
"parser": "@typescript-eslint/parser",
// "env":{
// browser:true,
// "es6":true
// },
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"no-var": 0,
"max-len": [0, {
"ignoreComments": true,
}],
"prefer-const": 0,
"operator-linebreak": 0,
"valid-jsdoc": 0,
"require-jsdoc": 0,
"prefer-rest-params": 0,
"prefer-spread": 0,
"guard-for-in": 0,
"no-unused-vars": 0,
"comma-dangle": ["error", "never"],
"no-multi-str": 0,
"indent": ["error", 4],
"no-invalid-this": 0
// "padding-line-between-statements": [
// "error",
// { "blankLine": "never", "prev": "var", "next": ["var"] }
// ]
}
};