We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25abc61 commit 7b47fb6Copy full SHA for 7b47fb6
docs/syntax-errors.md
@@ -330,11 +330,22 @@ function get() {
330
331
</details>
332
333
-<details><summary>Argument name clash</summary>
+<details><summary>argument name clash</summary>
334
335
```diff
336
-const a = ({b, b, ...c}) => {};
337
+const a = ({b, ...c}) => {};
338
```
339
340
341
+
342
+<details><summary>convert colon to comma</summary>
343
344
+```diff
345
+export const rules = [
346
+- ['apply-nesting': applyNesting],
347
++ ['apply-nesting', applyNesting],
348
+];
349
+```
350
351
+</details>
0 commit comments