aboutsummaryrefslogtreecommitdiffstats
path: root/tooling/eslint/react.js
diff options
context:
space:
mode:
Diffstat (limited to 'tooling/eslint/react.js')
-rw-r--r--tooling/eslint/react.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/tooling/eslint/react.js b/tooling/eslint/react.js
deleted file mode 100644
index 38b735b9..00000000
--- a/tooling/eslint/react.js
+++ /dev/null
@@ -1,27 +0,0 @@
-/** @type {import('eslint').Linter.Config} */
-const config = {
- extends: [
- "plugin:react/recommended",
- "plugin:react-hooks/recommended",
- "plugin:jsx-a11y/recommended",
- ],
- rules: {
- "react/prop-types": "off",
- "jsx-a11y/no-autofocus": "off",
- "jsx-a11y/label-has-associated-control": "off",
- "react-hooks/exhaustive-deps": "off",
- },
- globals: {
- React: "writable",
- },
- settings: {
- react: {
- version: "detect",
- },
- },
- env: {
- browser: true,
- },
-};
-
-module.exports = config;