diff options
Diffstat (limited to '')
-rw-r--r-- | static/.eslintrc.json (renamed from .eslintrc.js) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.eslintrc.js b/static/.eslintrc.json index d1074ab..4097d70 100644 --- a/.eslintrc.js +++ b/static/.eslintrc.json @@ -1,4 +1,4 @@ -module.exports = { +{ "env": { "browser": true, "es2021": true @@ -8,9 +8,9 @@ module.exports = { { "files": ["**/*.js"], "globals": { - "CWDATA": "writable", - }, - }, + "CWDATA": "writable" + } + } ], "parserOptions": { "ecmaVersion": "latest" @@ -33,4 +33,4 @@ module.exports = { "always" ] } -}; +} |