chore: update oxlint / oxfmt settings

This commit is contained in:
2026-02-04 13:31:08 -05:00
parent fdf32bbc78
commit 36e7d8ad8b
13 changed files with 316 additions and 268 deletions

View File

@@ -1,17 +1,22 @@
{
"extends": ["recommended"],
"plugins": ["vue"],
"$schema": "./node_modules/oxlint/configuration_schema.json",
"categories": {},
"env": {
"builtin": true,
"browser": true,
"node": true
},
"settings": {
"vue": {
"version": 3
}
},
"globals": {},
"ignorePatterns": [],
"plugins": ["import", "vue"],
"rules": {
"vue/max-attributes-per-line": "off",
"vue/no-v-html": "off"
"vue/define-emits-declaration": ["error", "type-based"],
"vue/define-props-declaration": ["error", "type-based"],
"vue/require-typed-ref": "error"
},
"settings": {
"vitest": {
"typecheck": false
}
}
}