Skip to content

Commit 273f7d9

Browse files
committed
Remove unused linting globals
1 parent 34f2ef5 commit 273f7d9

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

eslint.config.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,14 @@ export default [
3030
'src/**/*.{js,jsx}',
3131
],
3232
languageOptions: {
33-
globals: {
34-
APP_NAME: 'readonly',
35-
...globals.browser,
36-
},
33+
globals: globals.browser,
3734
},
3835
},
3936
{
4037
// Test files
4138
files: ['test/**/*.{js,jsx}'],
4239
languageOptions: {
4340
globals: {
44-
APP_NAME: 'readonly',
4541
...globals.browser,
4642
...globals.mocha,
4743
},
@@ -51,9 +47,7 @@ export default [
5147
// Build files
5248
files: ['*.{js,jsx}'],
5349
languageOptions: {
54-
globals: {
55-
...globals.node,
56-
},
50+
globals: globals.node,
5751
},
5852
},
5953
];

0 commit comments

Comments
 (0)