mirror of
https://gitee.com/JavaLionLi/plus-ui.git
synced 2026-09-14 16:17:31 +08:00
16 lines
553 B
JSON
16 lines
553 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json",
|
|
"plugins": ["vue", "typescript"],
|
|
"rules": {
|
|
"typescript/no-empty-function": "off",
|
|
"typescript/no-explicit-any": "off",
|
|
"typescript/no-unused-vars": "off",
|
|
"typescript/no-this-alias": "off",
|
|
"typescript/no-empty-object-type": "off",
|
|
"typescript/no-unused-expressions": "off",
|
|
"vue/multi-word-component-names": "off",
|
|
"prefer-rest-params": "off"
|
|
},
|
|
"ignore": ["dist/**", "dist-ssr/**", "coverage/**"]
|
|
}
|