adding monkeytype
Some checks failed
Mark Stale PRs / stale (push) Has been cancelled

This commit is contained in:
Benjamin Falch
2026-04-23 13:53:44 +02:00
parent e214a2fd35
commit 2bc741fb78
1930 changed files with 7590652 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
{
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json",
"overrides": [
{
"plugins": [
"typescript",
"unicorn",
"oxc",
"import",
"node",
"promise",
"react",
],
"files": ["src/**/*.tsx"],
"rules": {
"react/react-in-jsx-scope": "off",
"react/button-has-type": "error",
"react/jsx-no-duplicate-props": "error",
"react/jsx-no-undef": "error",
"react/jsx-props-no-spread-multi": "error",
"react/void-dom-elements-no-children": "error",
"react/no-unknown-property": [
"error",
{
"ignore": [
"autocomplete",
"class",
"classList",
"innerHTML",
"onScrollEnd",
"router-link",
],
},
],
"react/jsx-no-comment-textnodes": "error",
"react/style-prop-object": "error",
"react/checked-requires-onchange-or-readonly": "error",
"react/jsx-no-useless-fragment": "error",
"react/no-unescaped-entities": "error",
"react/jsx-pascal-case": "error",
},
},
],
}