mirror of
https://github.com/bwmarrin/discordgo.git
synced 2025-12-23 15:07:45 -05:00
* feat: ci barebones * fix(.github/workflows): checkout * feat(.golangci.yml): removed presets * feat(workflows/ci): moved matrix to test job * feat(golangci-lint): disabled all linters except golint * fix(workflows/ci): golangci-lint action cache fix * feat(workflows/ci): custom step with golangci-lint on normal commit * feat(.github/workflows): moved setup-go into individual jobs * feat(workflows/ci): only new lint issues for pull requests
20 lines
217 B
YAML
20 lines
217 B
YAML
linters:
|
|
disable-all: true
|
|
enable:
|
|
# - staticcheck
|
|
# - unused
|
|
- golint
|
|
|
|
linters-settings:
|
|
staticcheck:
|
|
go: "1.13"
|
|
|
|
checks: ["all"]
|
|
|
|
unused:
|
|
go: "1.13"
|
|
|
|
issues:
|
|
include:
|
|
- EXC0002
|