@@ -59,44 +59,44 @@ if (foo) {
5959 // ...
6060}
6161
62- // no conflict with `array-bracket-spacing`
62+ // Avoid conflict with `array-bracket-spacing`
6363let a = [this ];
6464let b = [function () {}];
6565
66- // no conflict with `arrow-spacing`
66+ // Avoid conflict with `arrow-spacing`
6767let a = ()=> this .foo ;
6868
69- // no conflict with `block-spacing`
69+ // Avoid conflict with `block-spacing`
7070{function foo () {}}
7171
72- // no conflict with `comma-spacing`
72+ // Avoid conflict with `comma-spacing`
7373let a = [100 ,this .foo , this .bar ];
7474
75- // not conflict with `computed-property-spacing`
75+ // Avoid conflict with `computed-property-spacing`
7676obj[this .foo ] = 0 ;
7777
78- // no conflict with `generator-star-spacing`
78+ // Avoid conflict with `generator-star-spacing`
7979function * foo () {}
8080
81- // no conflict with `key-spacing`
81+ // Avoid conflict with `key-spacing`
8282let obj = {
8383 foo : function () {}
8484};
8585
86- // no conflict with `object-curly-spacing`
86+ // Avoid conflict with `object-curly-spacing`
8787let obj = {foo: this };
8888
89- // no conflict with `semi-spacing`
89+ // Avoid conflict with `semi-spacing`
9090let a = this ;function foo () {}
9191
92- // no conflict with `space-in-parens`
92+ // Avoid conflict with `space-in-parens`
9393(function () {})();
9494
95- // no conflict with `space-infix-ops`
95+ // Avoid conflict with `space-infix-ops`
9696if (" foo" in {foo: 0 }) {}
9797if (10 + this .foo <= this .bar ) {}
9898
99- // no conflict with `jsx-curly-spacing`
99+ // Avoid conflict with `jsx-curly-spacing`
100100let a = < A foo= {this .foo } bar= {function (){}} / >
101101```
102102
@@ -157,57 +157,57 @@ if (foo) {
157157 // ...
158158}
159159
160- // not conflict with `array-bracket-spacing`
160+ // Avoid conflict with `array-bracket-spacing`
161161let a = [this ];
162162
163- // not conflict with `arrow-spacing`
163+ // Avoid conflict with `arrow-spacing`
164164let a = ()=> this .foo ;
165165
166- // not conflict with `comma-spacing`
166+ // Avoid conflict with `comma-spacing`
167167let a = [100 , this .foo , this .bar ];
168168
169- // not conflict with `computed-property-spacing`
169+ // Avoid conflict with `computed-property-spacing`
170170obj[this .foo ] = 0 ;
171171
172- // not conflict with `generator-star-spacing`
172+ // Avoid conflict with `generator-star-spacing`
173173function * foo () {}
174174
175- // not conflict with `key-spacing`
175+ // Avoid conflict with `key-spacing`
176176let obj = {
177177 foo : function () {}
178178};
179179
180- // not conflict with `func-call-spacing`
180+ // Avoid conflict with `func-call-spacing`
181181class A {
182182 constructor () {
183183 super ();
184184 }
185185}
186186
187- // not conflict with `object-curly-spacing`
187+ // Avoid conflict with `object-curly-spacing`
188188let obj = {foo: this };
189189
190- // not conflict with `semi-spacing`
190+ // Avoid conflict with `semi-spacing`
191191let a = this ;function foo () {}
192192
193- // not conflict with `space-before-function-paren`
193+ // Avoid conflict with `space-before-function-paren`
194194function () {}
195195
196- // no conflict with `space-infix-ops`
196+ // Avoid conflict with `space-infix-ops`
197197if (" foo" in {foo: 0 }) {}
198198if (10 + this .foo <= this .bar ) {}
199199
200- // no conflict with `space-unary-ops`
200+ // Avoid conflict with `space-unary-ops`
201201function * foo (a ) {
202202 return yield + a;
203203}
204204
205- // no conflict with `yield-star-spacing`
205+ // Avoid conflict with `yield-star-spacing`
206206function * foo (a ) {
207207 return yield * a;
208208}
209209
210- // no conflict with `jsx-curly-spacing`
210+ // Avoid conflict with `jsx-curly-spacing`
211211let a = < A foo= {this .foo } bar= {function (){}} / >
212212```
213213
0 commit comments