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 a9bd859 commit 7ca6f3eCopy full SHA for 7ca6f3e
eslint.config.mjs
@@ -35,6 +35,7 @@ const config = defineConfig(
35
rules: {
36
// Base
37
'max-lines-per-function': 'off',
38
+ 'no-console': 'warn',
39
40
// TypeScript
41
'@typescript-eslint/consistent-type-imports': 'error',
tools/generate-configs/index.ts
@@ -35,6 +35,7 @@ const getRecommendedRulesForTestingFramework = (
await writeConfig(specificFrameworkConfig, framework);
}
})().catch((error) => {
+ // eslint-disable-next-line no-console
console.error(error);
process.exitCode = 1;
});
0 commit comments