@apostrophecms/ai-helper
Version:
AI helpers for content creation
48 lines (47 loc) • 846 B
Plain Text
{
"extends": [
"apostrophe",
"plugin:vue/vue3-recommended"
],
"globals": {
"apos": true
},
"rules": {
"no-var": "error",
"no-console": 0,
"multiline-ternary": "off",
"vue/no-deprecated-destroyed-lifecycle": 0,
"vue/component-tags-order": [
"warn",
{
"order": [
"template",
"script",
"style"
]
}
],
"vue/max-attributes-per-line": [
"warn",
{
"singleline": 2,
"multiline": 2
}
],
"vue/singleline-html-element-content-newline": [
"warn",
{
"ignoreWhenNoAttributes": true,
"ignoreWhenEmpty": true,
"ignores": [
"h1",
"h2",
"h3",
"pre",
"textarea"
]
}
],
"vue/attributes-order": 0
}
}