diff --git a/.editorconfig b/.editorconfig index ed2a319d58..917a87af11 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,6 +11,6 @@ trim_trailing_whitespace = true [test/**/expected.css] insert_final_newline = false -[{package.json,.travis.yml,.eslintrc.json}] +[{package.json,.travis.yml,.eslintrc.json,.eslintrc.browser-check.json}] indent_style = space indent_size = 2 diff --git a/.eslintrc.browser-check.json b/.eslintrc.browser-check.json index 18a238f0de..5b9e6d5a3a 100644 --- a/.eslintrc.browser-check.json +++ b/.eslintrc.browser-check.json @@ -1,27 +1,27 @@ { - "root": true, - "plugins": [ - "builtin-compat" - ], - "rules": { - "builtin-compat/no-incompatible-builtins": 2 - }, - "env": { - "es6": true, - "browser": true, - "node": true, - "mocha": true - }, - "parserOptions": { - "ecmaVersion": 9, - "sourceType": "module" - }, - "settings": { - "import/core-modules": [ - "svelte" - ], - "svelte3/extensions": [ - "html" - ] - } + "root": true, + "plugins": [ + "builtin-compat" + ], + "rules": { + "builtin-compat/no-incompatible-builtins": 2 + }, + "env": { + "es6": true, + "browser": true, + "node": true, + "mocha": true + }, + "parserOptions": { + "ecmaVersion": 9, + "sourceType": "module" + }, + "settings": { + "import/core-modules": [ + "svelte" + ], + "svelte3/extensions": [ + "html" + ] + } }