unibest/.oxlintrc.json
feige996 305ac6dccd ci: 添加oxlint配置并更新prettier规则
添加.oxlintrc.json配置文件以启用oxlint检查,并更新.prettierrc.cjs以支持jsonc文件格式。同时在useUpload.ts中恢复accept参数的默认值。
2025-06-13 17:28:51 +08:00

12 lines
185 B
JSON

{
"extends": ["@oxlint/recommended"],
"rules": {
"no-console": "off",
"no-unused-vars": "off"
},
"files": ["src/**/*.{js,ts,vue}"],
"vue": {
"enabled": true
}
}