lume/.eslintrc

19 lines
597 B
Plaintext
Raw Normal View History

2023-02-21 07:58:47 +00:00
{
"parser": "@typescript-eslint/parser",
2023-04-24 06:51:59 +00:00
"plugins": ["@typescript-eslint", "react-refresh"],
2023-02-21 07:58:47 +00:00
"extends": [
"plugin:react/recommended",
"plugin:react/jsx-runtime",
2023-03-04 14:00:43 +00:00
"plugin:react-hooks/recommended",
2023-02-21 07:58:47 +00:00
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
2023-04-21 08:13:33 +00:00
"@typescript-eslint/no-unused-vars": "error",
2023-04-24 02:16:10 +00:00
"@typescript-eslint/no-explicit-any": "warn",
2023-04-24 06:51:59 +00:00
"react-refresh/only-export-components": "error",
2023-04-24 02:16:10 +00:00
"react/no-unknown-property": ["error", { "ignore": ["fetchpriority"] }]
2023-02-21 07:58:47 +00:00
},
"ignorePatterns": ["dist", "**/*.js", "**/*.json", "node_modules"]
}