X-Git-Url: https://git.openstreetmap.org/nominatim-ui.git/blobdiff_plain/76e3136f32e35ded2caf989b0bf699de64798921..c636646759d9c541f7baf19812be18d002a8ce1d:/.eslintrc.js diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..c453039 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,51 @@ +module.exports = { + extends: [ + 'airbnb-base/legacy' + ], + parserOptions: { + ecmaVersion: 2019, + sourceType: 'module' + }, + env: { + browser: true, + jquery: true + }, + plugins: [ + 'svelte3' + ], + 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 + } + } + ] +};