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 ad38d77 commit de7e925Copy full SHA for de7e925
1 file changed
docs/src/rules/no-multiple-empty-lines.md
@@ -93,14 +93,14 @@ var bar = 3;
93
::: incorrect
94
95
```js
96
-1 /*eslint no-multiple-empty-lines: ["error", { "max": 2, "maxEOF": 0 }]*/⏎
97
-2 ⏎
98
-3 var foo = 5;⏎
99
-4 ⏎
100
-5 ⏎
101
-6 var bar = 3;⏎
102
-7 ⏎
103
-8
+/*eslint no-multiple-empty-lines: ["error", { "max": 2, "maxEOF": 0 }]*/⏎
+⏎
+var foo = 5;⏎
+var bar = 3;⏎
+
104
```
105
106
:::
@@ -110,13 +110,13 @@ var bar = 3;
110
::: correct
111
112
113
114
115
116
117
118
119
-7
120
121
122
0 commit comments