mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-06 18:36:55 +08:00
43 lines
770 B
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"
|
|
}
|
|
}
|
|
]
|
|
} |