chore: format code style and update linting configuration

This commit is contained in:
Megghy
2025-10-02 10:38:23 +08:00
parent 6fd046adcd
commit 758549d29d
253 changed files with 16258 additions and 15833 deletions

View File

@@ -1,43 +1,9 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": [
"typescript"
],
"categories": {
"correctness": "off"
},
"plugins": ["typescript", "vue"],
"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"
}
}
]
}
"rules": {}
}