Skip to content

Commit

Permalink
docs: remove extra line numbers in example (#16848)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonz94 committed Feb 1, 2023
1 parent ad38d77 commit de7e925
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions docs/src/rules/no-multiple-empty-lines.md
Expand Up @@ -93,14 +93,14 @@ var bar = 3;
::: incorrect

```js
1 /*eslint no-multiple-empty-lines: ["error", { "max": 2, "maxEOF": 0 }]*/
2
3 var foo = 5;⏎
4
5
6 var bar = 3;⏎
7
8
/*eslint no-multiple-empty-lines: ["error", { "max": 2, "maxEOF": 0 }]*/
var foo = 5;⏎
var bar = 3;⏎

```

:::
Expand All @@ -110,13 +110,13 @@ var bar = 3;
::: correct

```js
1 /*eslint no-multiple-empty-lines: ["error", { "max": 2, "maxEOF": 0 }]*/
2
3 var foo = 5;⏎
4
5
6 var bar = 3;⏎
7
/*eslint no-multiple-empty-lines: ["error", { "max": 2, "maxEOF": 0 }]*/
var foo = 5;⏎
var bar = 3;⏎

```

:::
Expand Down

0 comments on commit de7e925

Please sign in to comment.