From 04bf93bb563f2da6c54044094f59b3fcd3884636 Mon Sep 17 00:00:00 2001 From: xandora Date: Tue, 18 May 2021 11:43:00 +1200 Subject: [PATCH 1/4] Update .eslintignore New line at eof --- .eslintignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintignore b/.eslintignore index 46850e4..1b7fab0 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1 +1 @@ -generator-exercise/ \ No newline at end of file +generator-exercise/ From 71d3005e52bd4e321ba0fd463c139b438df419d7 Mon Sep 17 00:00:00 2001 From: xandora Date: Tue, 18 May 2021 11:43:10 +1200 Subject: [PATCH 2/4] Update .gitignore New line at eof --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6403f04..ab44f60 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ .vscode node_modules/ -.DS_Store \ No newline at end of file +.DS_Store From 582521cc9f79f21b7154e7d4fdf31306389a235d Mon Sep 17 00:00:00 2001 From: xandora Date: Tue, 18 May 2021 11:43:23 +1200 Subject: [PATCH 3/4] Update calculator/calculator.js Fix duplicate semicolon --- calculator/calculator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calculator/calculator.js b/calculator/calculator.js index 301d746..51109d7 100644 --- a/calculator/calculator.js +++ b/calculator/calculator.js @@ -12,7 +12,7 @@ const sum = function() { const multiply = function() { -};; +}; const power = function() { From c8f3ff9d1bae3e5933d90696cb32430b1a981d99 Mon Sep 17 00:00:00 2001 From: xandora Date: Tue, 18 May 2021 11:43:45 +1200 Subject: [PATCH 4/4] Update helloWorld/helloWorld.js semicolon after function expression --- helloWorld/helloWorld.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloWorld/helloWorld.js b/helloWorld/helloWorld.js index 29e76b9..df27036 100644 --- a/helloWorld/helloWorld.js +++ b/helloWorld/helloWorld.js @@ -1,5 +1,5 @@ const helloWorld = function() { return '' -} +}; module.exports = helloWorld;