Files
Homarr/tooling/eslint/react.js

21 lines
383 B
JavaScript
Raw Normal View History

2023-12-08 22:35:15 +01:00
/** @type {import('eslint').Linter.Config} */
const config = {
extends: ["plugin:react/recommended", "plugin:react-hooks/recommended", "plugin:jsx-a11y/recommended"],
2023-12-08 22:35:15 +01:00
rules: {
"react/prop-types": "off",
},
globals: {
React: "writable",
},
settings: {
react: {
version: "detect",
},
},
env: {
browser: true,
},
};
module.exports = config;