You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
debug(`Config file ${configFilePath} is an empty object`);
526
+
emptyConfig=true;
527
+
}else{
528
+
configs.push(fileConfig);
529
+
}
530
+
}
506
531
}
532
+
533
+
if(emptyConfig){
534
+
globalThis.process?.emitWarning?.(`Running ESLint with an empty config (from ${configFilePath}). Please double-check that this is what you want. If you want to run ESLint with an empty config, export [{}] to remove this warning.`,"ESLintEmptyConfigWarning");
assert(Array.isArray(configArray),"Expected `loadConfigArrayForFile()` to return a config array");
100
+
assert(emitWarning.called,"Expected `process.emitWarning` to be called");
101
+
assert.strictEqual(emitWarning.args[0][1],"ESLintEmptyConfigWarning","Expected `process.emitWarning` to be called with 'ESLintEmptyConfigWarning' as the second argument");
102
+
});
103
+
104
+
it("should not error when loading an empty ESM config file",async()=>{
assert(Array.isArray(configArray),"Expected `loadConfigArrayForFile()` to return a config array");
117
+
assert(emitWarning.called,"Expected `process.emitWarning` to be called");
118
+
assert.strictEqual(emitWarning.args[0][1],"ESLintEmptyConfigWarning","Expected `process.emitWarning` to be called with 'ESLintEmptyConfigWarning' as the second argument");
119
+
});
120
+
121
+
it("should not error when loading an ESM config file with an empty array",async()=>{
assert(Array.isArray(configArray),"Expected `loadConfigArrayForFile()` to return a config array");
134
+
assert(emitWarning.called,"Expected `process.emitWarning` to be called");
135
+
assert.strictEqual(emitWarning.args[0][1],"ESLintEmptyConfigWarning","Expected `process.emitWarning` to be called with 'ESLintEmptyConfigWarning' as the second argument");
136
+
});
137
+
138
+
it("should throw an error when loading an ESM config file with null",async()=>{
0 commit comments