-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
all: remove golangci-yaml, add new linters
- Loading branch information
Showing
10 changed files
with
395 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,22 @@ | ||
.DS_Store | ||
/.vscode | ||
.idea | ||
/AdGuardHome | ||
/AdGuardHome.exe | ||
/AdGuardHome.yaml | ||
/AdGuardHome.log | ||
/data/ | ||
# Please, DO NOT put your text editors' temporary files here. The more are | ||
# added, the harder it gets to maintain and manage projects' gitignores. Put | ||
# them into your global gitignore file instead. | ||
# | ||
# See https://stackoverflow.com/a/7335487/1892060. | ||
# | ||
# Only build, run, and test outputs here. Sorted. | ||
*-packr.go | ||
*.db | ||
*.snap | ||
/bin/ | ||
/build/ | ||
/data/ | ||
/dist/ | ||
/client/node_modules/ | ||
/querylog.json | ||
/querylog.json.1 | ||
/dnsfilter/tests/dnsfilter.TestLotsOfRules*.pprof | ||
/dnsfilter/tests/top-1m.csv | ||
/launchpad_credentials | ||
/querylog.json* | ||
/snapcraft_login | ||
AdGuardHome* | ||
coverage.txt | ||
leases.db | ||
|
||
# Test output | ||
dnsfilter/tests/top-1m.csv | ||
dnsfilter/tests/dnsfilter.TestLotsOfRules*.pprof | ||
|
||
# Snapcraft build temporary files | ||
*.snap | ||
launchpad_credentials | ||
snapcraft_login | ||
snapcraft.yaml.bak | ||
|
||
# IntelliJ IDEA project files | ||
*.iml | ||
|
||
# Packr | ||
*-packr.go | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
module github.com/AdguardTeam/AdGuardHome/internal/tools | ||
|
||
go 1.15 | ||
|
||
require ( | ||
dmitri.shuralyov.com/go/generated v0.0.0-20170818220700-b1254a446363 // indirect | ||
github.com/client9/misspell v0.3.4 // indirect | ||
github.com/fzipp/gocyclo v0.3.1 | ||
github.com/golangci/misspell v0.3.5 | ||
github.com/google/go-cmp v0.5.4 // indirect | ||
github.com/gookit/color v1.3.3 // indirect | ||
github.com/gordonklaus/ineffassign v0.0.0-20201107091007-3b93a8888063 | ||
github.com/kisielk/errcheck v1.4.0 | ||
github.com/kyoh86/looppointer v0.1.7 | ||
github.com/kyoh86/nolint v0.0.1 // indirect | ||
github.com/securego/gosec/v2 v2.5.0 | ||
golang.org/x/lint v0.0.0-20200302205851-738671d3881b | ||
golang.org/x/mod v0.4.0 // indirect | ||
golang.org/x/tools v0.0.0-20201208062317-e652b2f42cc7 | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
honnef.co/go/tools v0.0.1-2020.1.6 | ||
mvdan.cc/gofumpt v0.0.0-20201129102820-5c11c50e9475 | ||
mvdan.cc/unparam v0.0.0-20200501210554-b37ab49443f7 | ||
) |
Oops, something went wrong.