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
484
484
[ vue/no-multiple-slot-args ] : ./no-multiple-slot-args.md
485
485
[ vue/no-multiple-template-root ] : ./no-multiple-template-root.md
486
486
[ vue/no-mutating-props ] : ./no-mutating-props.md
487
- [ vue/no-negated-v-if-condition ] : ./no-negated-v-if-condition.md
488
487
[ vue/no-negated-condition ] : ./no-negated-condition.md
488
+ [ vue/no-negated-v-if-condition ] : ./no-negated-v-if-condition.md
489
489
[ vue/no-parsing-error ] : ./no-parsing-error.md
490
490
[ vue/no-potential-component-option-typo ] : ./no-potential-component-option-typo.md
491
491
[ 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
17
17
18
18
## :couple : Related Rules
19
19
20
+ - [ ` vue/no-negated-v-if-condition ` ] ( https://eslint.vuejs.org/rules/no-negated-v-if-condition.html )
20
21
- [ unicorn/no-negated-condition] ( https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-negated-condition.md )
21
22
22
23
## :books : Further Reading
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ Nothing.
55
55
## :couple : Related Rules
56
56
57
57
- [ 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 )
58
59
- [ unicorn/no-negated-condition] ( https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/no-negated-condition.md )
59
60
60
61
## :mag : Implementation
Original file line number Diff line number Diff line change @@ -141,8 +141,8 @@ const plugin = {
141
141
'no-multiple-slot-args' : require ( './rules/no-multiple-slot-args' ) ,
142
142
'no-multiple-template-root' : require ( './rules/no-multiple-template-root' ) ,
143
143
'no-mutating-props' : require ( './rules/no-mutating-props' ) ,
144
- 'no-negated-v-if-condition' : require ( './rules/no-negated-v-if-condition' ) ,
145
144
'no-negated-condition' : require ( './rules/no-negated-condition' ) ,
145
+ 'no-negated-v-if-condition' : require ( './rules/no-negated-v-if-condition' ) ,
146
146
'no-parsing-error' : require ( './rules/no-parsing-error' ) ,
147
147
'no-potential-component-option-typo' : require ( './rules/no-potential-component-option-typo' ) ,
148
148
'no-ref-as-operand' : require ( './rules/no-ref-as-operand' ) ,
You can’t perform that action at this time.
0 commit comments