|
17 | 17 | }, |
18 | 18 | { |
19 | 19 | "name": "for-direction", |
20 | | - "description": "Enforce \"for\" loop update clause moving the counter in the right direction", |
| 20 | + "description": "Enforce `for` loop update clause moving the counter in the right direction", |
21 | 21 | "recommended": true, |
22 | 22 | "fixable": false, |
23 | 23 | "hasSuggestions": false |
|
363 | 363 | "description": "Disallow unused variables", |
364 | 364 | "recommended": true, |
365 | 365 | "fixable": false, |
366 | | - "hasSuggestions": false |
| 366 | + "hasSuggestions": true |
367 | 367 | }, |
368 | 368 | { |
369 | 369 | "name": "no-use-before-define", |
|
488 | 488 | }, |
489 | 489 | { |
490 | 490 | "name": "default-case-last", |
491 | | - "description": "Enforce default clauses in switch statements to be last", |
| 491 | + "description": "Enforce `default` clauses in switch statements to be last", |
492 | 492 | "recommended": false, |
493 | 493 | "fixable": false, |
494 | 494 | "hasSuggestions": false |
|
943 | 943 | }, |
944 | 944 | { |
945 | 945 | "name": "no-param-reassign", |
946 | | - "description": "Disallow reassigning `function` parameters", |
| 946 | + "description": "Disallow reassigning function parameters", |
947 | 947 | "recommended": false, |
948 | 948 | "fixable": false, |
949 | 949 | "hasSuggestions": false |
|
1020 | 1020 | }, |
1021 | 1021 | { |
1022 | 1022 | "name": "no-script-url", |
1023 | | - "description": "Disallow `javascript:` urls", |
| 1023 | + "description": "Disallow `javascript:` URLs", |
1024 | 1024 | "recommended": false, |
1025 | 1025 | "fixable": false, |
1026 | 1026 | "hasSuggestions": false |
|
1258 | 1258 | }, |
1259 | 1259 | { |
1260 | 1260 | "name": "prefer-object-spread", |
1261 | | - "description": "Disallow using Object.assign with an object literal as the first argument and prefer the use of object spread instead", |
| 1261 | + "description": "Disallow using `Object.assign` with an object literal as the first argument and prefer the use of object spread instead", |
1262 | 1262 | "recommended": false, |
1263 | 1263 | "fixable": true, |
1264 | 1264 | "hasSuggestions": false |
|
1314 | 1314 | }, |
1315 | 1315 | { |
1316 | 1316 | "name": "require-unicode-regexp", |
1317 | | - "description": "Enforce the use of `u` or `v` flag on RegExp", |
| 1317 | + "description": "Enforce the use of `u` or `v` flag on regular expressions", |
1318 | 1318 | "recommended": false, |
1319 | 1319 | "fixable": false, |
1320 | 1320 | "hasSuggestions": true |
|
0 commit comments