@@ -31,6 +31,7 @@ Examples of **incorrect** code for this rule with the default `{ "max": 2 }` opt
3131var foo = 5 ;
3232
3333
34+
3435var bar = 3 ;
3536```
3637
@@ -45,6 +46,7 @@ Examples of **correct** code for this rule with the default `{ "max": 2 }` optio
4546
4647var foo = 5 ;
4748
49+
4850var bar = 3 ;
4951```
5052
@@ -61,8 +63,10 @@ Examples of **incorrect** code for this rule with the `{ max: 2, maxEOF: 0 }` op
6163
6264var foo = 5 ;
6365
66+
6467var bar = 3 ;
6568
69+
6670```
6771
6872:::
@@ -76,6 +80,7 @@ Examples of **correct** code for this rule with the `{ max: 2, maxEOF: 0 }` opti
7680
7781var foo = 5 ;
7882
83+
7984var bar = 3 ;
8085```
8186
@@ -85,6 +90,8 @@ var bar = 3;
8590
8691** Incorrect** :
8792
93+ ::: incorrect
94+
8895``` js
89961 /* eslint no-multiple-empty-lines: ["error", { "max": 2, "maxEOF": 0 }]*/ ⏎
90972 ⏎
@@ -96,8 +103,12 @@ var bar = 3;
961038
97104```
98105
106+ :::
107+
99108** Correct** :
100109
110+ ::: correct
111+
101112``` js
1021131 /* eslint no-multiple-empty-lines: ["error", { "max": 2, "maxEOF": 0 }]*/ ⏎
1031142 ⏎
@@ -108,6 +119,8 @@ var bar = 3;
1081197
109120```
110121
122+ :::
123+
111124### maxBOF
112125
113126Examples of ** incorrect** code for this rule with the ` { max: 2, maxBOF: 1 } ` options:
@@ -117,8 +130,10 @@ Examples of **incorrect** code for this rule with the `{ max: 2, maxBOF: 1 }` op
117130``` js
118131/* eslint no-multiple-empty-lines: ["error", { "max": 2, "maxBOF": 1 }]*/
119132
133+
120134var foo = 5 ;
121135
136+
122137var bar = 3 ;
123138```
124139
@@ -133,6 +148,7 @@ Examples of **correct** code for this rule with the `{ max: 2, maxBOF: 1 }` opti
133148
134149var foo = 5 ;
135150
151+
136152var bar = 3 ;
137153```
138154
0 commit comments