@@ -104,13 +104,16 @@ const NOT_SUPPORTED_RULE_NAMES = new Set([
104104  'vue/html-comment-indent' , 
105105  'vue/html-end-tags' , 
106106  'vue/html-indent' , 
107+   'vue/html-quotes' , 
107108  'vue/html-self-closing' , 
108109  'vue/key-spacing' , 
109110  'vue/keyword-spacing' , 
110111  'vue/max-attributes-per-line' , 
111112  'vue/max-len' , 
112113  'vue/max-lines-per-block' , 
114+   'vue/max-template-depth' , 
113115  'vue/multiline-html-element-content-newline' , 
116+   'vue/multiline-ternary' , 
114117  'vue/mustache-interpolation-spacing' , 
115118  'vue/new-line-between-multi-line-property' ,  // stylistic rule 
116119  'vue/no-bare-strings-in-template' , 
@@ -141,6 +144,8 @@ const NOT_SUPPORTED_RULE_NAMES = new Set([
141144  'vue/no-multi-spaces' , 
142145  'vue/no-multiple-objects-in-class' , 
143146  'vue/no-multiple-template-root' , 
147+   'vue/no-negated-condition' , 
148+   'vue/no-negated-v-if-condition' , 
144149  'vue/no-parsing-error' , 
145150  'vue/no-restricted-block' , 
146151  'vue/no-restricted-class' , 
@@ -194,6 +199,7 @@ const NOT_SUPPORTED_RULE_NAMES = new Set([
194199  'vue/space-in-parens' ,  // stylistic rule + template parsing 
195200  'vue/space-infix-ops' ,  // stylistic rule + template parsing 
196201  'vue/space-unary-ops' ,  // stylistic rule + template parsing 
202+   'vue/static-class-names-order' , 
197203  'vue/template-curly-spacing' ,  // stylistic rule + template parsing 
198204  'vue/use-v-on-exact' , 
199205  'vue/v-bind-style' , 
0 commit comments