fork of indigo with slightly nicer lexgen

add a golangci-lint config file

Changed files
+18
+1
.gitignore
··· 36 # Don't ignore this file itself, or other specific dotfiles 37 !.gitignore 38 !.github/ 39 40 # Don't commit your (default location) creds 41 bsky.auth
··· 36 # Don't ignore this file itself, or other specific dotfiles 37 !.gitignore 38 !.github/ 39 + !.golangci.yaml 40 41 # Don't commit your (default location) creds 42 bsky.auth
+17
.golangci.yaml
···
··· 1 + version: "2" 2 + 3 + issues: 4 + max-issues-per-linter: 0 5 + max-same-issues: 0 6 + 7 + linters: 8 + disable: 9 + - errcheck 10 + - gocritic 11 + - unused 12 + settings: 13 + errcheck: 14 + check-type-assertions: true 15 + disable-default-exclusions: true 16 + gocritic: 17 + enable-all: true