@twotwoba/vv-cli
Version:
Easily create Vite + React19/Vue3 web/h5/mini-program/chrome-extension projects.
21 lines (20 loc) • 459 B
JSON
{
"plugins": ["vue", "typescript"],
"rules": {
"no-undef": "off",
"vue/multi-word-component-names": [
"error",
{
"ignores": ["index"]
}
],
"typescript/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"typescript/no-explicit-any": "off"
}
}