From bcf8a3f4de25a3f5954888887c30bd4470e5e398 Mon Sep 17 00:00:00 2001 From: Simon Lydell Date: Sat, 10 Feb 2024 11:37:54 +0100 Subject: [PATCH] Enable more vitest ESLint rules --- .eslintrc.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 45941e4..54f89af 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -72,6 +72,10 @@ module.exports = { { files: ["*.test.js"], extends: ["plugin:vitest/recommended"], + rules: { + "vitest/no-disabled-tests": warn, + "vitest/no-focused-tests": warn, + }, }, ], };