From ea4754e332e3a5ea16c2068e648a11a5a3d6ffba Mon Sep 17 00:00:00 2001 From: Tejas Manohar Date: Mon, 5 Oct 2015 18:18:03 -0500 Subject: [PATCH 1/2] ensure all JS files have blank newline at top --- benchmarks/experimental/index.js | 1 + lib/application.js | 1 + test/experimental/index.js | 1 + 3 files changed, 3 insertions(+) diff --git a/benchmarks/experimental/index.js b/benchmarks/experimental/index.js index 84a3198..6166d07 100644 --- a/benchmarks/experimental/index.js +++ b/benchmarks/experimental/index.js @@ -1,3 +1,4 @@ + // support async await by babel require('babel/register')({ optional: ['asyncToGenerator'] diff --git a/lib/application.js b/lib/application.js index e046726..4f46fe6 100644 --- a/lib/application.js +++ b/lib/application.js @@ -1,3 +1,4 @@ + /** * Module dependencies. */ diff --git a/test/experimental/index.js b/test/experimental/index.js index 276085f..5bbf087 100644 --- a/test/experimental/index.js +++ b/test/experimental/index.js @@ -1,3 +1,4 @@ + require('babel/register')({ optional: ['asyncToGenerator'] }); From 5e21238594340e9ea1c85aaaedeecf06830b33db Mon Sep 17 00:00:00 2001 From: Tejas Manohar Date: Mon, 5 Oct 2015 18:19:32 -0500 Subject: [PATCH 2/2] add newline to bottom of file where missing --- test/request/acceptsEncodings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/request/acceptsEncodings.js b/test/request/acceptsEncodings.js index 9a64e70..da88373 100644 --- a/test/request/acceptsEncodings.js +++ b/test/request/acceptsEncodings.js @@ -37,4 +37,4 @@ describe('ctx.acceptsEncodings()', function(){ ctx.acceptsEncodings(['compress', 'gzip']).should.eql('gzip'); }) }) -}) \ No newline at end of file +})