File tree Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Expand file tree Collapse file tree 4 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -484,8 +484,8 @@ The following rules extend the rules provided by ESLint itself and apply them to
484484[ vue/no-multiple-slot-args ] : ./no-multiple-slot-args.md
485485[ vue/no-multiple-template-root ] : ./no-multiple-template-root.md
486486[ vue/no-mutating-props ] : ./no-mutating-props.md
487- [ vue/no-negated-v-if-condition ] : ./no-negated-v-if-condition.md
488487[ vue/no-negated-condition ] : ./no-negated-condition.md
488+ [ vue/no-negated-v-if-condition ] : ./no-negated-v-if-condition.md
489489[ vue/no-parsing-error ] : ./no-parsing-error.md
490490[ vue/no-potential-component-option-typo ] : ./no-potential-component-option-typo.md
491491[ vue/no-ref-as-operand ] : ./no-ref-as-operand.md
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ This rule is the same rule as core [no-negated-condition] rule but it applies to
1717
1818## :couple : Related Rules
1919
20+ - [ ` vue/no-negated-v-if-condition ` ] ( https://eslint.vuejs.org/rules/no-negated-v-if-condition.html )
2021- [ unicorn/no-negated-condition] ( https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-negated-condition.md )
2122
2223## :books : Further Reading
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ Nothing.
5555## :couple : Related Rules
5656
5757- [ no-negated-condition] ( https://eslint.org/docs/latest/rules/no-negated-condition )
58+ - [ vue/no-negated-condition] ( https://eslint.vuejs.org/rules/no-negated-condition.html )
5859- [ unicorn/no-negated-condition] ( https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-negated-condition.md )
5960
6061## :mag : Implementation
Original file line number Diff line number Diff line change @@ -141,8 +141,8 @@ const plugin = {
141141 'no-multiple-slot-args' : require ( './rules/no-multiple-slot-args' ) ,
142142 'no-multiple-template-root' : require ( './rules/no-multiple-template-root' ) ,
143143 'no-mutating-props' : require ( './rules/no-mutating-props' ) ,
144- 'no-negated-v-if-condition' : require ( './rules/no-negated-v-if-condition' ) ,
145144 'no-negated-condition' : require ( './rules/no-negated-condition' ) ,
145+ 'no-negated-v-if-condition' : require ( './rules/no-negated-v-if-condition' ) ,
146146 'no-parsing-error' : require ( './rules/no-parsing-error' ) ,
147147 'no-potential-component-option-typo' : require ( './rules/no-potential-component-option-typo' ) ,
148148 'no-ref-as-operand' : require ( './rules/no-ref-as-operand' ) ,
You can’t perform that action at this time.
0 commit comments