X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/8e602e40f04bb048adba103dd1dde79ba2cfdffc..a7662e9e06d47ac03f0941a198d9b4e46c27b00d:/.eslintrc.json?ds=sidebyside diff --git a/.eslintrc.json b/.eslintrc.json index 94aedd3..a05265d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,38 +1,52 @@ +// https://eslint.org/docs/latest/user-guide/configuring/configuration-files { "extends": [ - "airbnb-base/legacy" + "airbnb-base/legacy", + "plugin:mocha/recommended", + "plugin:svelte/recommended" ], - "parser": "espree", + "parserOptions": { + "ecmaVersion": 2019, + "sourceType": "module" + }, "env": { - "browser": true, - "jquery": true + "browser": true }, + "plugins": [ + "svelte", + "mocha" + ], "overrides": [ { "files": ["*"], "globals": { - "Nominatim_Config": true, - "Handlebars": true, - "L": true // leaflet library + "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 + "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", - 140, + 100, 2, { - "ignoreUrls": true, - "ignoreComments": false + "ignoreUrls": true } ] } + }, + { + "files": ["test/**"], + "globals": { + "browser": true + } } ] }