Skip to content

Commit e50fd4d

Browse files
committed
Fix some eslint issues
1 parent 9a2b74a commit e50fd4d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/app/config/polyfills.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ g.cosmiconfig = {};
1515
g.prettier = {};
1616
g.jsdom = {
1717
JSDOM: {
18-
fragment: function(htmlString) {
18+
// IE11 support
19+
// eslint-disable-next-line object-shorthand
20+
fragment: function fragment(htmlString) {
1921
const div = document.createElement('div');
2022
div.innerHTML = htmlString.trim();
2123

0 commit comments

Comments
 (0)