Skip to content

Commit

Permalink
Reenable jsx-ally eslint plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
hockeybuggy committed Oct 17, 2024
1 parent 12cfc2c commit 0a78bd6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// import jsxA11Y from "eslint-plugin-jsx-a11y";
import react from "eslint-plugin-react";
import jestPlugin from "eslint-plugin-jest";
import globals from "globals";
import eslint from "@eslint/js";
import globals from "globals";
import jestPlugin from "eslint-plugin-jest";
import jsxA11Y from "eslint-plugin-jsx-a11y";
import react from "eslint-plugin-react";
import tseslint from "typescript-eslint";

export default tseslint.config(
Expand All @@ -13,6 +13,7 @@ export default tseslint.config(
"@typescript-eslint": tseslint.plugin,
react,
jest: jestPlugin,
"jsx-ally": jestPlugin,
},

languageOptions: {
Expand All @@ -37,7 +38,7 @@ export default tseslint.config(
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
// "jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/anchor-is-valid": "off",
},
},
{
Expand Down

0 comments on commit 0a78bd6

Please sign in to comment.