@@ -76,7 +76,7 @@ The following patterns are considered problems:
76
76
```
77
77
78
78
``` js
79
- /* eslint spaced-comment: ["error", "always", { "block": "balanced": true }] */
79
+ /* eslint spaced-comment: ["error", "always", { "block": { "balanced": true } }] */
80
80
/* This is a comment with whitespace at the beginning but not the end*/
81
81
```
82
82
@@ -121,7 +121,7 @@ The following patterns are considered problems:
121
121
```
122
122
123
123
``` js
124
- /* eslint spaced-comment: ["error", "never", { "block": "balanced": true }]*/
124
+ /* eslint spaced-comment: ["error", "never", { "block": { "balanced": true } }]*/
125
125
/* This is a comment with whitespace at the end */
126
126
```
127
127
@@ -234,12 +234,12 @@ The following patterns are considered problems:
234
234
```
235
235
236
236
``` js
237
- /* eslint spaced-comment: ["error", "always", { "block": "markers": ["!"], "balanced": true }]*/
237
+ /* eslint spaced-comment: ["error", "always", { "block": { "markers": ["!"], "balanced": true } }]*/
238
238
/* ! This is a comment with a marker but without whitespace at the end*/
239
239
```
240
240
241
241
``` js
242
- /* eslint spaced-comment: ["error", "never", { "block": "markers": ["!"], "balanced": true }]*/
242
+ /* eslint spaced-comment: ["error", "never", { "block": { "markers": ["!"], "balanced": true } }]*/
243
243
/* !This is a comment with a marker but with whitespace at the end */
244
244
```
245
245
0 commit comments