eslint-plugin-crisp 1.0.18 → 1.0.20
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/package.json +3 -4
- package/recommended-vue.js +14 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-crisp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"description": "Custom EsLint Rules for Crisp",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Crisp IM SAS",
|
|
@@ -11,8 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
13
|
"eslint": "8.45.0",
|
|
14
|
-
"eslint-plugin-vue": "
|
|
15
|
-
"eslint-plugin-vue-pug": "0.6.0"
|
|
16
|
-
"vue-eslint-parser": "9.3.1"
|
|
14
|
+
"eslint-plugin-vue": "9.15.1",
|
|
15
|
+
"eslint-plugin-vue-pug": "0.6.0"
|
|
17
16
|
}
|
|
18
17
|
}
|
package/recommended-vue.js
CHANGED
|
@@ -108,13 +108,6 @@ module.exports = {
|
|
|
108
108
|
// General Vue rules
|
|
109
109
|
"vue/no-v-html": "off",
|
|
110
110
|
"vue/html-quotes": "off",
|
|
111
|
-
"vue/component-tags-order": [
|
|
112
|
-
"error",
|
|
113
|
-
|
|
114
|
-
{
|
|
115
|
-
"order": [ "template", "script", "style" ]
|
|
116
|
-
}
|
|
117
|
-
],
|
|
118
111
|
"vue/attributes-order": [
|
|
119
112
|
"error",
|
|
120
113
|
|
|
@@ -134,6 +127,20 @@ module.exports = {
|
|
|
134
127
|
"alphabetical": false
|
|
135
128
|
}
|
|
136
129
|
],
|
|
130
|
+
"vue/component-tags-order": [
|
|
131
|
+
"error",
|
|
132
|
+
|
|
133
|
+
{
|
|
134
|
+
"order": [ "template", "script", "style" ]
|
|
135
|
+
}
|
|
136
|
+
],
|
|
137
|
+
"vue/no-mutating-props": [
|
|
138
|
+
"error",
|
|
139
|
+
|
|
140
|
+
{
|
|
141
|
+
"shallowOnly": true
|
|
142
|
+
}
|
|
143
|
+
],
|
|
137
144
|
"vue/v-slot-style": [
|
|
138
145
|
"error",
|
|
139
146
|
|