diff --git a/.eslintrc.js b/.eslintrc.js index 1581bb2..7546fbb 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -207,6 +207,10 @@ module.exports = { tsconfigRootDir: __dirname, project: ["./tests/tsconfig.json"], }, + rules: { + "vitest/no-disabled-tests": warn, + "vitest/no-focused-tests": warn, + }, }, { files: "examples/**/*.ts", @@ -215,6 +219,10 @@ module.exports = { tsconfigRootDir: __dirname, project: ["./examples/tsconfig.json"], }, + rules: { + "vitest/no-disabled-tests": warn, + "vitest/no-focused-tests": warn, + }, }, ], };