Skip to content

Commit

Permalink
fix(basic): disallow multi empty lines at the end of file (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanminkian committed Dec 12, 2022
1 parent b58283d commit 4d38bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/basic/index.js
Expand Up @@ -225,7 +225,7 @@ module.exports = {
asyncArrow: 'always',
},
],
'no-multiple-empty-lines': ['error', { max: 1, maxBOF: 0, maxEOF: 1 }],
'no-multiple-empty-lines': ['error', { max: 1, maxBOF: 0, maxEOF: 0 }],

// es6
'no-var': 'error',
Expand Down

0 comments on commit 4d38bd0

Please sign in to comment.