Files
vtsuru.live/.oxlintrc.json

43 lines
770 B
JSON

{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": [
"typescript"
],
"categories": {
"correctness": "off"
},
"env": {
"builtin": true,
"browser": true
},
"rules": {
},
"overrides": [
{
"files": [
"**/*.js",
"**/*.jsx"
],
"rules": {
"no-console": "off",
"no-debugger": "off",
"vue/no-mutating-props": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-var-requires": "warn"
}
},
{
"files": [
"**/*.ts",
"**/*.tsx",
"**/*.vue"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"vue/no-mutating-props": "off"
}
}
]
}