File: markdown.go

package info (click to toggle)
golang-github-reviewdog-errorformat 0.0~git20220309.b075c45-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 900 kB
  • sloc: python: 59; xml: 13; javascript: 4; sh: 4; haskell: 3; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 372 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package fmts

func init() {
	const lang = "markdown"

	register(&Fmt{
		Name: "remark-lint",
		Errorformat: []string{
			`%-P%f`,
			`%#%l:%c %# %trror  %m`,
			`%#%l:%c %# %tarning  %m`,
			`%-Q`,
			`%-G%.%#`,
		},
		Description: "Tool for writing clean and consistent markdown code",
		URL:         "https://github.com/remarkjs/remark-lint",
		Language:    lang,
	})
}