From abcce3ffee01ccbcba0771b63f3b9b2325c1e27c Mon Sep 17 00:00:00 2001 From: nbogie Date: Mon, 26 Feb 2024 01:45:16 +0000 Subject: [PATCH] disable a couple of jsx-a11y rules by default. (clickable divs) --- .eslintrc.cjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 3898d71..b256c4e 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -78,5 +78,7 @@ module.exports = { "@typescript-eslint/no-non-null-assertion": "off", "no-debugger": "off", // "no-console": ["error", { allow: ["warn", "error"] }] + "jsx-a11y/click-events-have-key-events": "off", + "jsx-a11y/no-static-element-interactions": "off", }, };