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 0ebcccb commit 24342f9Copy full SHA for 24342f9
.eslintrc.js
@@ -4,11 +4,11 @@ module.exports = {
4
extends: ['webpack', 'prettier'],
5
parserOptions: {
6
sourceType: 'script',
7
- ecmaVersion: 2018
+ ecmaVersion: 2018,
8
},
9
env: {
10
node: true,
11
- es6: true
+ es6: true,
12
13
rules: {
14
curly: 'error',
@@ -33,6 +33,13 @@ module.exports = {
33
'no-console': 'off',
34
35
36
+ {
37
+ files: ['test/client/**/*.js'],
38
+ env: {
39
+ browser: true,
40
+ node: true,
41
+ },
42
43
{
44
files: ['examples/**/*.js'],
45
0 commit comments