Skip to content

Commit

Permalink
make linter less noisy
Browse files Browse the repository at this point in the history
  • Loading branch information
ysmood committed Aug 15, 2023
1 parent 2e5e465 commit ed86763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/check-issue/check_format.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
)

func checkMarkdown(body string) error {
cmd := strings.Split("npx -ys -- markdownlint-cli@0.31.1 -s --disable MD041 MD034 MD013 MD047 MD010", " ")
cmd := strings.Split("npx -ys -- markdownlint-cli@0.31.1 -s --disable MD041 MD034 MD013 MD047 MD010 MD012", " ")
c := exec.Command(cmd[0], cmd[1:]...)
c.Stdin = bytes.NewBufferString(body)
b, err := c.CombinedOutput()
Expand Down

0 comments on commit ed86763

Please sign in to comment.