Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gomod #550

Merged
merged 4 commits into from
Jul 5, 2019
Merged

Gomod #550

Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ tf.json
terraform.tfvars
*kubeconfig
!*kubeconfig/
/vendor
4 changes: 4 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
run:
issues-exit-code: 1
skip-dirs:
- hack
- vendor

linters:
enable-all: true
Expand Down Expand Up @@ -27,3 +30,4 @@ issues:
- "don't use underscores in Go names; func SetDefaults_Features should be SetDefaultsFeatures"
- "don't use underscores in Go names; func SetDefaults_MachineController should be SetDefaultsMachineController"
- "G101: Potential hardcoded credentials"
- "G106: Use of ssh InsecureIgnoreHostKey should be audited"
Loading