@@ -105,13 +105,16 @@ const NOT_SUPPORTED_RULE_NAMES = new Set([
105105 'vue/html-comment-indent' ,
106106 'vue/html-end-tags' ,
107107 'vue/html-indent' ,
108+ 'vue/html-quotes' ,
108109 'vue/html-self-closing' ,
109110 'vue/key-spacing' ,
110111 'vue/keyword-spacing' ,
111112 'vue/max-attributes-per-line' ,
112113 'vue/max-len' ,
113114 'vue/max-lines-per-block' ,
115+ 'vue/max-template-depth' ,
114116 'vue/multiline-html-element-content-newline' ,
117+ 'vue/multiline-ternary' ,
115118 'vue/mustache-interpolation-spacing' ,
116119 'vue/new-line-between-multi-line-property' , // stylistic rule
117120 'vue/no-bare-strings-in-template' ,
@@ -142,6 +145,8 @@ const NOT_SUPPORTED_RULE_NAMES = new Set([
142145 'vue/no-multi-spaces' ,
143146 'vue/no-multiple-objects-in-class' ,
144147 'vue/no-multiple-template-root' ,
148+ 'vue/no-negated-condition' ,
149+ 'vue/no-negated-v-if-condition' ,
145150 'vue/no-parsing-error' ,
146151 'vue/no-restricted-block' ,
147152 'vue/no-restricted-class' ,
@@ -195,6 +200,7 @@ const NOT_SUPPORTED_RULE_NAMES = new Set([
195200 'vue/space-in-parens' , // stylistic rule + template parsing
196201 'vue/space-infix-ops' , // stylistic rule + template parsing
197202 'vue/space-unary-ops' , // stylistic rule + template parsing
203+ 'vue/static-class-names-order' ,
198204 'vue/template-curly-spacing' , // stylistic rule + template parsing
199205 'vue/use-v-on-exact' ,
200206 'vue/v-bind-style' ,
0 commit comments