forked from heremaps/xyz-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
35 lines (34 loc) · 887 Bytes
/
Copy path.eslintrc.js
File metadata and controls
35 lines (34 loc) · 887 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
module.exports = {
'extends': 'google',
'parser': '@typescript-eslint/parser',
// "env":{
// browser:true,
// "es6":true
// },
'parserOptions': {
'ecmaVersion': 2021,
'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"] }
// ]
}
};