eslint-plugin-crisp 1.0.11 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/build.yml +0 -3
- package/package.json +1 -1
- package/recommended-vue.js +22 -3
package/package.json
CHANGED
package/recommended-vue.js
CHANGED
|
@@ -106,9 +106,28 @@ module.exports = {
|
|
|
106
106
|
|
|
107
107
|
// General Vue rules
|
|
108
108
|
"vue/multi-word-component-names": "error",
|
|
109
|
-
|
|
110
|
-
"vue/
|
|
111
|
-
|
|
109
|
+
"vue/no-v-html": "off",
|
|
110
|
+
"vue/attributes-order": [
|
|
111
|
+
"error",
|
|
112
|
+
{
|
|
113
|
+
order: [
|
|
114
|
+
"OTHER_DIRECTIVES",
|
|
115
|
+
"CONDITIONALS",
|
|
116
|
+
"LIST_RENDERING",
|
|
117
|
+
"RENDER_MODIFIERS",
|
|
118
|
+
"SLOT",
|
|
119
|
+
"TWO_WAY_BINDING",
|
|
120
|
+
"CONTENT",
|
|
121
|
+
"EVENTS",
|
|
122
|
+
"GLOBAL",
|
|
123
|
+
"DEFINITION",
|
|
124
|
+
"UNIQUE",
|
|
125
|
+
"OTHER_ATTR"
|
|
126
|
+
["ATTR_DYNAMIC", "ATTR_STATIC", "ATTR_SHORTHAND_BOOL"]
|
|
127
|
+
],
|
|
128
|
+
"alphabetical": false
|
|
129
|
+
}
|
|
130
|
+
],
|
|
112
131
|
|
|
113
132
|
// Crisp JS rules
|
|
114
133
|
"crisp/header-check": "error",
|