Skip to content

Commit

Permalink
Fix eol-last
Browse files Browse the repository at this point in the history
  • Loading branch information
bananaappletw committed Oct 20, 2016
1 parent 95e2c94 commit a0336c3
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion 404/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ describe('404', function(){
.expect(/Page Not Found/, done);
})
})
})
})
2 changes: 1 addition & 1 deletion blog/lib/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ var views = require('co-views');

module.exports = views(__dirname + '/../views', {
map: { html: 'swig' }
});
});
2 changes: 1 addition & 1 deletion body-parsing/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ describe('Body Parsing', function(){
});
});
})
})
})
2 changes: 1 addition & 1 deletion compose/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ var all = compose([

app.use(all);

if (!module.parent) app.listen(3000);
if (!module.parent) app.listen(3000);
2 changes: 1 addition & 1 deletion compose/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ describe('Compose', function(){
.expect(404, done);
})
})
})
})
2 changes: 1 addition & 1 deletion cookies/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ app.use(function *(){
this.body = n + ' views';
});

if (!module.parent) app.listen(3000);
if (!module.parent) app.listen(3000);
2 changes: 1 addition & 1 deletion cookies/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ describe('Cookies Views', function(){
})
})
})
})
})
2 changes: 1 addition & 1 deletion errors/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ describe('Errors', function () {
.get('/')
.end(function(){});
})
})
})
2 changes: 1 addition & 1 deletion hello-world/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ describe('Hello World', function(){
.expect(200)
.expect('Hello World', done);
});
});
});
2 changes: 1 addition & 1 deletion multipart/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ if (!module.parent) app.listen(3000);

function uid() {
return Math.random().toString(36).slice(2);
}
}
2 changes: 1 addition & 1 deletion stream-objects/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ describe('Stream Objects', function(){
done();
});
});
});
});
2 changes: 1 addition & 1 deletion stream-view/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ app.use(function* () {
this.body = new View(this);
});

if (!module.parent) app.listen(3000);
if (!module.parent) app.listen(3000);
2 changes: 1 addition & 1 deletion stream-view/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ describe('Stream View', function(){
done();
});
});
});
});

0 comments on commit a0336c3

Please sign in to comment.