We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b8dc56 commit 0ebcccbCopy full SHA for 0ebcccb
.eslintrc.js
@@ -2,13 +2,13 @@
2
3
module.exports = {
4
extends: ['webpack', 'prettier'],
5
- globals: {
6
- document: true,
7
- window: true,
8
- },
9
parserOptions: {
10
sourceType: 'script',
11
- ecmaVersion: 10,
+ ecmaVersion: 2018
+ },
+ env: {
+ node: true,
+ es6: true
12
},
13
rules: {
14
curly: 'error',
@@ -21,6 +21,12 @@ module.exports = {
21
'global-require': 'off',
22
23
overrides: [
24
+ {
25
+ files: ['client-src/**/*.js'],
26
27
+ browser: true,
28
29
30
{
31
files: ['test/**/*.js'],
32
0 commit comments