Skip to content

Commit

Permalink
cmd/branchff: Initial commit of Go-based branchff tool
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Augustus <saugustus@vmware.com>
  • Loading branch information
justaugustus committed Sep 9, 2019
1 parent 06608cb commit 0b14acd
Show file tree
Hide file tree
Showing 7 changed files with 693 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .golangci.yml
@@ -0,0 +1,32 @@
linters-settings:
govet:
check-shadowing: true
gocyclo:
min-complexity: 15
maligned:
suggest-new: true
linters:
enable:
- golint
- govet
- gofmt
- goimports
- structcheck
- varcheck
- interfacer
- unconvert
- ineffassign
- goconst
- gocyclo
- maligned
- misspell
- nakedret
- prealloc
- gosec
- deadcode
disable-all: true
# Run with --fast=false for more extensive checks
fast: true
issue:
max-same-issues: 0
max-per-linter: 0

0 comments on commit 0b14acd

Please sign in to comment.