UNPKG

@twotwoba/vv-cli

Version:

Easily create Vite + React/Vue3 project with TailwindCSS and other useful libraries. Also support Chrome extension.

123 lines (122 loc) 4.67 kB
{ "$schema": "./node_modules/oxlint/configuration_schema.json", "plugins": ["typescript", "vue"], "categories": {}, "rules": { "constructor-super": "warn", "for-direction": "warn", "no-async-promise-executor": "warn", "no-caller": "warn", "no-class-assign": "warn", "no-compare-neg-zero": "warn", "no-cond-assign": "warn", "no-const-assign": "warn", "no-constant-binary-expression": "warn", "no-constant-condition": "warn", "no-control-regex": "warn", "no-debugger": "warn", "no-delete-var": "warn", "no-dupe-class-members": "warn", "no-dupe-else-if": "warn", "no-dupe-keys": "warn", "no-duplicate-case": "warn", "no-empty-character-class": "warn", "no-empty-pattern": "warn", "no-empty-static-block": "warn", "no-eval": "warn", "no-ex-assign": "warn", "no-extra-boolean-cast": "warn", "no-func-assign": "warn", "no-global-assign": "warn", "no-import-assign": "warn", "no-invalid-regexp": "warn", "no-irregular-whitespace": "warn", "no-loss-of-precision": "warn", "no-new-native-nonconstructor": "warn", "no-nonoctal-decimal-escape": "warn", "no-obj-calls": "warn", "no-self-assign": "warn", "no-setter-return": "warn", "no-shadow-restricted-names": "warn", "no-sparse-arrays": "warn", "no-this-before-super": "warn", "no-unassigned-vars": "warn", "no-undef": "off", "no-unsafe-finally": "warn", "no-unsafe-negation": "warn", "no-unsafe-optional-chaining": "warn", "no-unused-expressions": "warn", "no-unused-labels": "warn", "no-unused-private-class-members": "warn", "no-unused-vars": [ "error", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } ], "no-useless-backreference": "warn", "no-useless-catch": "warn", "no-useless-escape": "warn", "no-useless-rename": "warn", "no-with": "warn", "require-yield": "warn", "use-isnan": "warn", "valid-typeof": "warn", "typescript/await-thenable": "warn", "typescript/no-array-delete": "warn", "typescript/no-base-to-string": "warn", "typescript/no-duplicate-enum-values": "warn", "typescript/no-duplicate-type-constituents": "warn", "typescript/no-explicit-any": "off", "typescript/no-extra-non-null-assertion": "warn", "typescript/no-floating-promises": "warn", "typescript/no-for-in-array": "error", "typescript/no-implied-eval": "warn", "typescript/no-meaningless-void-operator": "warn", "typescript/no-misused-new": "warn", "typescript/no-misused-spread": "warn", "typescript/no-non-null-asserted-optional-chain": "warn", "typescript/no-redundant-type-constituents": "warn", "typescript/no-this-alias": "warn", "typescript/no-unnecessary-parameter-property-assignment": "warn", "typescript/no-unsafe-declaration-merging": "warn", "typescript/no-unsafe-unary-minus": "warn", "typescript/no-useless-empty-export": "warn", "typescript/no-wrapper-object-types": "warn", "typescript/prefer-as-const": "warn", "typescript/require-array-sort-compare": "warn", "typescript/restrict-template-expressions": "warn", "typescript/triple-slash-reference": "warn", "typescript/unbound-method": "warn", "vue/no-arrow-functions-in-watch": "warn", "vue/no-deprecated-destroyed-lifecycle": "warn", "vue/no-export-in-script-setup": "warn", "vue/no-lifecycle-after-await": "warn", "vue/no-this-in-before-route-enter": "warn", "vue/prefer-import-from-vue": "warn", "vue/valid-define-emits": "warn", "vue/valid-define-props": "warn", "vue/multi-word-component-names": "off" }, "settings": { "jsdoc": { "ignorePrivate": false, "ignoreInternal": false, "ignoreReplacesDocs": true, "overrideReplacesDocs": true, "augmentsExtendsReplacesDocs": false, "implementsReplacesDocs": false, "exemptDestructuredRootsFromChecks": false, "tagNamePreference": {} }, "vitest": { "typecheck": false } }, "env": { "builtin": true }, "globals": {}, "ignorePatterns": [] }