X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/41247723b2940efe89648749b90e56d582bdfb89..00a6e8aa8dd06f8a2bd7ccccdccfcb6215cf4841:/.eslintrc diff --git a/.eslintrc b/.eslintrc index bd7f885..8902297 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,7 +1,24 @@ { + "parserOptions": { + "ecmaVersion": 2019, + "sourceType": "module" + }, + "env": { + "es6": true, + "browser": true + }, "extends": [ "@hapi/eslint-config-hapi" ], + "plugins": [ + "svelte3" + ], + "overrides": [ + { + "files": ["**/*.svelte"], + "processor": "svelte3/svelte3" + } + ], "rules": { "indent": [ 2, @@ -9,8 +26,5 @@ ], "no-undef": 2, "require-yield": 0 - }, - "parserOptions": { - "sourceType": "module" } }