1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
"rules": { "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-unused-vars": 2, "quotes": [2, "double"], "semi-spacing": [1, { "before": false, "after": true }], "use-isnan": 2, "valid-jsdoc": 1, "max-depth": [0, 4], "@typescript-eslint/ban-ts-comment": "off", "vue/multi-word-component-names": [2, { "ignores": ["index", "continue"] }], "vue/no-setup-props-destructure": 0, "@typescript-eslint/no-this-alias": 0, "no-extra-semi": 0 }
|