Skip to content

Commit be4e516

Browse files
committed
fixed missing semicolon.
1 parent 6446a35 commit be4e516

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@
1010
"parserOptions": {
1111
"ecmaVersion": 6,
1212
"sourceType": "module"
13+
},
14+
"rules": {
15+
"semi": ["error", "always"]
1316
}
1417
}

polyfill/fetch-node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
var fetchNode = require('../fetch-node');
44
var fetch = fetchNode.fetch.bind({});
5-
fetch.polyfill = true
5+
fetch.polyfill = true;
66

77
if (!global.fetch) {
88
global.fetch = fetch;

0 commit comments

Comments
 (0)