Skip to content
This repository was archived by the owner on Nov 29, 2025. It is now read-only.

Commit bf1b620

Browse files
committed
Removed bold markdown from hover title
1 parent 1926c7d commit bf1b620

File tree

1 file changed

+1
-1
lines changed
  • dockerfile-lint-extension/extension/src

1 file changed

+1
-1
lines changed

dockerfile-lint-extension/extension/src/ui.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export async function removeDecorations(): Promise<void> {
3535
export function getHover(dockerfile: string, position: Position, result: LintResult): Hover | null {
3636
const lineNumber = position.line + 1
3737
const content = (lint: Lint[]): string =>
38-
['# **Dockerfile lint recommendations**\n---\n'].concat(lint.map(lint => lint.lint)).join('\n- \n')
38+
['# Dockerfile lint recommendations\n---\n'].concat(lint.map(lint => lint.lint)).join('\n- \n')
3939

4040
if(!result || !result.lintForLine[lineNumber]) {
4141
return null

0 commit comments

Comments
 (0)