mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 19:29:17 +01:00
* feat: update prettier configuration for print width * chore: apply code formatting to entire repository * fix: remove build files * fix: format issue --------- Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
21 lines
383 B
JavaScript
21 lines
383 B
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
const config = {
|
|
extends: ["plugin:react/recommended", "plugin:react-hooks/recommended", "plugin:jsx-a11y/recommended"],
|
|
rules: {
|
|
"react/prop-types": "off",
|
|
},
|
|
globals: {
|
|
React: "writable",
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: "detect",
|
|
},
|
|
},
|
|
env: {
|
|
browser: true,
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|