Skip to content

Commit

Permalink
lint: remove multiple empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed Jul 12, 2019
1 parent 9d7ebbd commit 9e75303
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 5 deletions.
1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ rules:
eol-last: error
eqeqeq: ["error", "always", { "null": "ignore" }]
no-mixed-spaces-and-tabs: error
no-multiple-empty-lines: ["error", { "max": 1, "maxEOF": 0 }]
no-trailing-spaces: error
one-var: ["error", { "initialized": "never" }]
1 change: 0 additions & 1 deletion examples/extend/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,3 @@ app.get('/', function(req, res){
});

app.listen(3000);

1 change: 0 additions & 1 deletion examples/partial/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ app.get('/', function(req, res) {
});

app.listen(3000);

1 change: 0 additions & 1 deletion lib/async.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,3 @@ module.exports = function() {

return obj;
};

1 change: 0 additions & 1 deletion test/3.x/no_layout_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,3 @@ test('index layout cache', function(done) {
.expect(fs.readFileSync(path.join(FIXTURES_DIR, 'index_no_layout.html'), 'utf8'))
.end(done)
});

1 change: 0 additions & 1 deletion test/4.x/no_layout_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,3 @@ test('index layout cache', function(done) {
.expect(fs.readFileSync(path.join(FIXTURES_DIR, 'index_no_layout.html'), 'utf8'))
.end(done)
});

0 comments on commit 9e75303

Please sign in to comment.