From b8378ca65b25e23453fee6bd7818ce12c1cc07e2 Mon Sep 17 00:00:00 2001 From: pnodet Date: Sat, 21 Sep 2024 13:07:44 +0200 Subject: [PATCH] feat: add newly supported biome rules --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index fd3d7c5..aa884d2 100644 --- a/index.js +++ b/index.js @@ -135,6 +135,8 @@ module.exports = { "jsx-a11y/html-has-lang": "off", "jsx-a11y/iframe-has-title": "off", "jsx-a11y/img-redundant-alt": "off", + "jsx-a11y/interactive-supports-focus": "off", + "jsx-a11y/label-has-associated-control": "off", "jsx-a11y/lang": "off", "jsx-a11y/media-has-caption": "off", "jsx-a11y/mouse-events-have-key-events": "off", @@ -163,6 +165,7 @@ module.exports = { "react-hooks/exhaustive-deps": "off", "simple-import-sort/imports": "off", "stylistic/jsx-self-closing-comp": "off", + "unicorn/new-for-builtins": "off", "unicorn/no-array-for-each": "off", "unicorn/no-instanceof-array": "off", "unicorn/no-static-only-class": "off",