Skip to content

Commit 0997085

Browse files
author
goatee-ci
committed
CI: Lint code
Lints code.
1 parent 4946b7a commit 0997085

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/core/Meta.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ export class Meta extends Element {
88

99
render() {
1010
const attrs = Object.entries(this.attributes)
11-
.map(([key, value]) => `${key}="${value}"`)
11+
.map(([key,
12+
value]) => `${key}="${value}"`)
1213
.join(" ");
1314
return `<meta ${attrs}>`;
1415
}

src/core/Style.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ export class Style extends Element {
99

1010
render() {
1111
const attrs = Object.entries(this.attributes)
12-
.map(([key, value]) => `${key}="${value}"`)
12+
.map(([key,
13+
value]) => `${key}="${value}"`)
1314
.join(" ");
1415
return `<style${attrs ? " " + attrs : ""}>\n${this.content}\n</style>`;
1516
}

0 commit comments

Comments
 (0)