Skip to content
This repository was archived by the owner on Sep 14, 2022. It is now read-only.

Commit 42331a7

Browse files
committed
add href in a
1 parent 068b455 commit 42331a7

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ module.exports = {
1919
rules: {
2020
"@html-eslint/require-lang": "error",
2121
"@html-eslint/require-title": "error",
22-
"@html-eslint/no-multiple-h1": "error"
23-
}
22+
"@html-eslint/no-multiple-h1": "error",
23+
},
2424
},
2525
],
2626
};

src/components/Header.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,24 @@ export const Header: FC = () => (
3838
<ul className="version-list">
3939
<li>
4040
<div className="version">
41-
<a>
41+
<a href="https://github.com/typescript-eslint/typescript-eslint">
4242
@typescript-eslint{" "}
4343
{pkgJson.dependencies["@typescript-eslint/eslint-plugin"]}
4444
</a>
4545
</div>
4646
</li>
4747
<li>
4848
<div className="version">
49-
<a>typescript {pkgJson.dependencies["typescript"]}</a>
49+
<a href="https://github.com/microsoft/TypeScript">
50+
typescript {pkgJson.dependencies["typescript"]}
51+
</a>
5052
</div>
5153
</li>
5254
<li>
5355
<div className="version">
54-
<a>eslint {pkgJson.dependencies["eslint"]}</a>
56+
<a href="https://github.com/eslint/eslint">
57+
eslint {pkgJson.dependencies["eslint"]}
58+
</a>
5559
</div>
5660
</li>
5761
</ul>

0 commit comments

Comments
 (0)