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 34f2ef5 commit 273f7d9Copy full SHA for 273f7d9
eslint.config.js
@@ -30,18 +30,14 @@ export default [
30
'src/**/*.{js,jsx}',
31
],
32
languageOptions: {
33
- globals: {
34
- APP_NAME: 'readonly',
35
- ...globals.browser,
36
- },
+ globals: globals.browser,
37
},
38
39
{
40
// Test files
41
files: ['test/**/*.{js,jsx}'],
42
43
globals: {
44
45
...globals.browser,
46
...globals.mocha,
47
@@ -51,9 +47,7 @@ export default [
51
// Build files
52
48
files: ['*.{js,jsx}'],
53
49
54
55
- ...globals.node,
56
50
+ globals: globals.node,
57
58
59
];
0 commit comments