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.
@@ -22,9 +22,6 @@ jobs:
22
22
  - name: Verify versions
23
23
  run: node --version && npm --version && node -p process.versions.v8
24
24
 
25
- - name: Install dependencies
26
- run: npm install
27
-
28
25
  - name: Release package
29
26
  run: npm publish --ignore-scripts
30
27
  env:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-crisp",
3
- "version": "1.0.11",
3
+ "version": "1.0.14",
4
4
  "description": "Custom EsLint Rules for Crisp",
5
5
  "main": "index.js",
6
6
  "author": "Crisp IM SAS",
@@ -106,9 +106,28 @@ module.exports = {
106
106
 
107
107
  // General Vue rules
108
108
  "vue/multi-word-component-names": "error",
109
-
110
- "vue/attribute-hyphenation": ["error", "always"],
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",