8000 multiple files: Added a blank line at the end of each file · unconnect/javascript-exercises@8b753de · GitHub
[go: up one dir, main page]

Skip to content

Commit 8b753de

Browse files
author
Michael Frank
committed
multiple files: Added a blank line at the end of each file
1 parent 03d7fe2 commit 8b753de

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

calculator/calculator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ module.exports = {
2929
multiply,
3030
power,
3131
factorial
32-
};
32+
};

helloWorld/helloWorld.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ const helloWorld = require('./helloWorld');
22

33
test('says "Hello, World!"', function() {
44
expect(helloWorld()).toBe("Hello, World!");
5-
});
5+
});

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,8 @@
2222
},
2323
"scripts": {
2424
"test": "jest"
25+
},
26+
"eslintConfig": {
27+
"root": true
2528
}
2629
}

pigLatin/pigLatin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ function pigLatin(string) {
22

33
};
44

5-
module.exports = pigLatin;
5+
module.exports = pigLatin;

0 commit comments

Comments
 (0)
0