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 7c11425 commit 3e34879Copy full SHA for 3e34879
eslint.config.js
@@ -7,15 +7,20 @@ module.exports = {
7
"rules": {
8
"func-names": 0,
9
"global-require": 0,
10
+ "no-undef": "error",
11
"prefer-destructuring": 0,
12
"strict": 0,
13
// Include rules from airbnb configuration directly here
14
// Make sure to copy the rules from the airbnb configuration
15
},
16
"languageOptions": {
17
"globals": {
- // Define global variables here for your files
18
- "mocha": true
+ __dirname: true,
19
+ console: true,
20
+ describe: true,
21
+ it: true,
22
+ module: true,
23
+ require: true,
24
}
- }
25
+ },
26
};
0 commit comments