forked from OpenHistoricalMap/nominatim-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
59 lines (59 loc) · 1.28 KB
/
.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module.exports = {
extends: [
'airbnb-base/legacy',
'plugin:mocha/recommended'
],
parserOptions: {
ecmaVersion: 2019,
sourceType: 'module'
},
env: {
browser: true,
jquery: true
},
plugins: [
'svelte3',
'mocha'
],
overrides: [
{
files: ['*'],
globals: {
L: true, // leaflet library
Nominatim_Config: true
},
rules: {
camelcase: 'off', // my_var is fine, no need for myVar
'func-names': 'off', // anonymous 'function()' is fine
'vars-on-top': 'off',
'new-cap': 'off', // constructor name can start lowercase (as Leaflet does)
'no-multiple-empty-lines': 'off',
'no-use-before-define': ['error', { functions: false }],
'padded-blocks': 'off',
'no-param-reassign': 'off',
'max-len': [
'error',
100,
2,
{
ignoreUrls: true,
ignoreComments: false
}
]
}
},
{
files: ['*.svelte'],
processor: 'svelte3/svelte3',
rules: {
'no-label-var': 'off' // eslint thinks $: (https://svelte.dev/tutorial/reactive-statements) are labels
}
},
{
files: ['test/**'],
globals: {
browser: true
}
}
]
};