Update eslint config (#12609)

- Remove unneeded "Tribute" global
- Separate Node and Browser environments
- Update environment to es2020 to enable new globals like "BigInt"
This commit is contained in:
silverwind 2020-08-29 17:34:00 +02:00 committed by GitHub
parent afd89b1767
commit 7187fdbb1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -13,9 +13,7 @@ plugins:
- eslint-plugin-import
env:
browser: true
es6: true
jquery: true
es2020: true
node: true
globals:
@ -24,9 +22,13 @@ globals:
Dropzone: false
SimpleMDE: false
u2fApi: false
Tribute: false
overrides:
- files: ["web_src/**/*.js"]
env:
browser: true
jquery: true
node: false
- files: ["web_src/**/*worker.js"]
env:
worker: true