Skip to content

Commit

Permalink
Merge pull request #14 from gemini-testing/fix/no-multiple-empty-lines
Browse files Browse the repository at this point in the history
fix: 'no-multiple-empty-lines' rule
  • Loading branch information
eGavr committed Jul 4, 2017
2 parents 407003a + 5cfac7a commit 07fa45e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.*
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = {
'no-mixed-spaces-and-tabs': 'error',
'no-multi-spaces': 'error',
'no-multi-str': 'error',
'no-multiple-empty-lines': 'error',
'no-multiple-empty-lines': ['error', {max: 1, maxEOF: 1, maxBOF: 0}],
'no-new': 'error',
'no-trailing-spaces': 'error',
'no-undef': 'error',
Expand Down

0 comments on commit 07fa45e

Please sign in to comment.