this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix lex lint

+3 -1
+3 -1
cmd/glot/lex_lint.go
··· 4 4 "bytes" 5 5 "context" 6 6 "encoding/json" 7 + "errors" 7 8 "fmt" 8 9 "log/slog" 9 10 "os" ··· 16 17 ) 17 18 18 19 var ( 19 - ErrLintFailures = lexlint.ErrLintFailures 20 + // internal error used to set non-zero return code (but not print separately) 21 + ErrLintFailures = errors.New("linting issues detected") 20 22 ) 21 23 22 24 var cmdLexLint = &cli.Command{