routie dev init since i didn't adhere to any proper guidance up until now

This commit is contained in:
2026-04-29 22:27:29 -06:00
commit e1dabb71e2
15301 changed files with 3562618 additions and 0 deletions
@@ -0,0 +1,39 @@
//#region lib/configs/vue3-strongly-recommended-error.ts
var vue3_strongly_recommended_error_default = {
extends: require.resolve("./vue3-essential"),
rules: {
"vue/attribute-hyphenation": "error",
"vue/component-definition-name-casing": "error",
"vue/first-attribute-linebreak": "error",
"vue/html-closing-bracket-newline": "error",
"vue/html-closing-bracket-spacing": "error",
"vue/html-end-tags": "error",
"vue/html-indent": "error",
"vue/html-quotes": "error",
"vue/html-self-closing": "error",
"vue/max-attributes-per-line": "error",
"vue/multiline-html-element-content-newline": "error",
"vue/mustache-interpolation-spacing": "error",
"vue/no-multi-spaces": "error",
"vue/no-spaces-around-equal-signs-in-attribute": "error",
"vue/no-template-shadow": "error",
"vue/one-component-per-file": "error",
"vue/prop-name-casing": "error",
"vue/require-default-prop": "error",
"vue/require-explicit-emits": "error",
"vue/require-prop-types": "error",
"vue/singleline-html-element-content-newline": "error",
"vue/v-bind-style": "error",
"vue/v-on-event-hyphenation": [
"error",
"always",
{ autofix: true }
],
"vue/v-on-style": "error",
"vue/v-slot-style": "error"
}
};
//#endregion
module.exports = vue3_strongly_recommended_error_default;