File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -154,8 +154,8 @@ For example:
154
154
| [ vue/keyword-spacing] ( ./keyword-spacing.md ) | enforce consistent spacing before and after keywords | :wrench : |
155
155
| [ vue/match-component-file-name] ( ./match-component-file-name.md ) | require component name property to match its file name | |
156
156
| [ vue/no-boolean-default] ( ./no-boolean-default.md ) | disallow boolean defaults | :wrench : |
157
- | [ vue/no-deprecated-slot-attribute] ( ./no-deprecated-slot-attribute.md ) | disallow deprecated ` slot ` attribute (in Vue.js 2.6.0+) | :wrench : |
158
157
| [ vue/no-deprecated-scope-attribute] ( ./no-deprecated-scope-attribute.md ) | disallow deprecated ` scope ` attribute (in Vue.js 2.5.0+) | :wrench : |
158
+ | [ vue/no-deprecated-slot-attribute] ( ./no-deprecated-slot-attribute.md ) | disallow deprecated ` slot ` attribute (in Vue.js 2.6.0+) | :wrench : |
159
159
| [ vue/no-deprecated-slot-scope-attribute] ( ./no-deprecated-slot-scope-attribute.md ) | disallow deprecated ` slot-scope ` attribute (in Vue.js 2.6.0+) | :wrench : |
160
160
| [ vue/no-empty-pattern] ( ./no-empty-pattern.md ) | disallow empty destructuring patterns | |
161
161
| [ vue/no-reserved-component-names] ( ./no-reserved-component-names.md ) | disallow the use of reserved names in component definitions | |
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ module.exports = {
38
38
'no-async-in-computed-properties' : require ( './rules/no-async-in-computed-properties' ) ,
39
39
'no-boolean-default' : require ( './rules/no-boolean-default' ) ,
40
40
'no-confusing-v-for-v-if' : require ( './rules/no-confusing-v-for-v-if' ) ,
41
- 'no-deprecated-slot-attribute' : require ( './rules/no-deprecated-slot-attribute' ) ,
42
41
'no-deprecated-scope-attribute' : require ( './rules/no-deprecated-scope-attribute' ) ,
42
+ 'no-deprecated-slot-attribute' : require ( './rules/no-deprecated-slot-attribute' ) ,
43
43
'no-deprecated-slot-scope-attribute' : require ( './rules/no-deprecated-slot-scope-attribute' ) ,
44
44
'no-dupe-keys' : require ( './rules/no-dupe-keys' ) ,
45
45
'no-duplicate-attributes' : require ( './rules/no-duplicate-attributes' ) ,
You can’t perform that action at this time.
0 commit comments