Skip to content

Commit

Permalink
feat: relase 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hophacker committed Mar 7, 2022
1 parent 4abe38d commit 2932756
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
.idea/

# Binaries
/gitea-vet*
/govet*

dist
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GO ?= go

VERSION := v0.1.0
RELEASE_NOTE := "Init"
VERSION := v0.1.1
RELEASE_NOTE := "Empty denied imports"

git-tag:
git tag -a $(VERSION) -m $(RELEASE_NOTE)
Expand Down
2 changes: 1 addition & 1 deletion checks/denylisted-imports.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

var (
deniedImports = []string{"io/ioutil", "encoding/json"}
deniedImports = []string{} // "io/ioutil", "encoding/json"
DenylistImports = &analysis.Analyzer{
Name: "denylist_imports",
Doc: "check for denied imports",
Expand Down

0 comments on commit 2932756

Please sign in to comment.