X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/938037d6a26baecd334944957882c0108d2176e6..58e99ba8b34867b7ea51ff8c73d3df838a844592:/config/eslint.js?ds=sidebyside diff --git a/config/eslint.js b/config/eslint.js index a52b1e63f..b4d0429e4 100644 --- a/config/eslint.js +++ b/config/eslint.js @@ -5,7 +5,7 @@ module.exports = [ js.configs.recommended, { languageOptions: { - ecmaVersion: 2015, + ecmaVersion: 2021, sourceType: "script", globals: { ...globals.browser, @@ -122,6 +122,18 @@ module.exports = [ "yoda": "error" } }, + { + // Additional configuration for test files + files: ["test/**/*.js"], + languageOptions: { + globals: { + ...globals.mocha, + expect: "readonly", + assert: "readonly", + should: "readonly" + } + } + }, { files: ["config/eslint.js"], languageOptions: {