@@ -16,7 +16,7 @@ Generated by [AVA](https://avajs.dev).
16
16
17
17
`␊
18
18
> 1 | !foo === bar␊
19
- | ^ Negated expression in not allowed in equality check.␊
19
+ | ^ Negated expression is not allowed in equality check.␊
20
20
␊
21
21
--------------------------------------------------------------------------------␊
22
22
Suggestion 1/1: Switch to '!==' check.␊
@@ -35,7 +35,7 @@ Generated by [AVA](https://avajs.dev).
35
35
36
36
`␊
37
37
> 1 | !foo !== bar␊
38
- | ^ Negated expression in not allowed in equality check.␊
38
+ | ^ Negated expression is not allowed in equality check.␊
39
39
␊
40
40
--------------------------------------------------------------------------------␊
41
41
Suggestion 1/1: Switch to '===' check.␊
@@ -54,7 +54,7 @@ Generated by [AVA](https://avajs.dev).
54
54
55
55
`␊
56
56
> 1 | !foo == bar␊
57
- | ^ Negated expression in not allowed in equality check.␊
57
+ | ^ Negated expression is not allowed in equality check.␊
58
58
␊
59
59
--------------------------------------------------------------------------------␊
60
60
Suggestion 1/1: Switch to '!=' check.␊
@@ -73,7 +73,7 @@ Generated by [AVA](https://avajs.dev).
73
73
74
74
`␊
75
75
> 1 | !foo != bar␊
76
- | ^ Negated expression in not allowed in equality check.␊
76
+ | ^ Negated expression is not allowed in equality check.␊
77
77
␊
78
78
--------------------------------------------------------------------------------␊
79
79
Suggestion 1/1: Switch to '==' check.␊
@@ -95,7 +95,7 @@ Generated by [AVA](https://avajs.dev).
95
95
`␊
96
96
1 | function x() {␊
97
97
> 2 | return!foo === bar;␊
98
- | ^ Negated expression in not allowed in equality check.␊
98
+ | ^ Negated expression is not allowed in equality check.␊
99
99
3 | }␊
100
100
␊
101
101
--------------------------------------------------------------------------------␊
@@ -123,7 +123,7 @@ Generated by [AVA](https://avajs.dev).
123
123
`␊
124
124
1 | function x() {␊
125
125
> 2 | return!␊
126
- | ^ Negated expression in not allowed in equality check.␊
126
+ | ^ Negated expression is not allowed in equality check.␊
127
127
3 | foo === bar;␊
128
128
4 | throw!␊
129
129
5 | foo === bar;␊
@@ -146,7 +146,7 @@ Generated by [AVA](https://avajs.dev).
146
146
2 | return!␊
147
147
3 | foo === bar;␊
148
148
> 4 | throw!␊
149
- | ^ Negated expression in not allowed in equality check.␊
149
+ | ^ Negated expression is not allowed in equality check.␊
150
150
5 | foo === bar;␊
151
151
6 | }␊
152
152
␊
@@ -174,7 +174,7 @@ Generated by [AVA](https://avajs.dev).
174
174
`␊
175
175
1 | foo␊
176
176
> 2 | !(a) === b␊
177
- | ^ Negated expression in not allowed in equality check.␊
177
+ | ^ Negated expression is not allowed in equality check.␊
178
178
␊
179
179
--------------------------------------------------------------------------------␊
180
180
Suggestion 1/1: Switch to '!==' check.␊
@@ -196,7 +196,7 @@ Generated by [AVA](https://avajs.dev).
196
196
`␊
197
197
1 | foo␊
198
198
> 2 | ![a, b].join('') === c␊
199
- | ^ Negated expression in not allowed in equality check.␊
199
+ | ^ Negated expression is not allowed in equality check.␊
200
200
␊
201
201
--------------------------------------------------------------------------------␊
202
202
Suggestion 1/1: Switch to '!==' check.␊
@@ -218,7 +218,7 @@ Generated by [AVA](https://avajs.dev).
218
218
`␊
219
219
1 | foo␊
220
220
> 2 | ! [a, b].join('') === c␊
221
- | ^ Negated expression in not allowed in equality check.␊
221
+ | ^ Negated expression is not allowed in equality check.␊
222
222
␊
223
223
--------------------------------------------------------------------------------␊
224
224
Suggestion 1/1: Switch to '!==' check.␊
@@ -240,7 +240,7 @@ Generated by [AVA](https://avajs.dev).
240
240
`␊
241
241
1 | foo␊
242
242
> 2 | !/* comment */[a, b].join('') === c␊
243
- | ^ Negated expression in not allowed in equality check.␊
243
+ | ^ Negated expression is not allowed in equality check.␊
244
244
␊
245
245
--------------------------------------------------------------------------------␊
246
246
Suggestion 1/1: Switch to '!==' check.␊
0 commit comments