File tree Expand file tree Collapse file tree 4 files changed +5
-0
lines changed
Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ issues:
5757 - text : " weak cryptographic primitive"
5858 linters :
5959 - gosec
60+ exclude-use-default : false
6061
6162# golangci.com configuration
6263# https://github.com/golangci/golangci/wiki/Configuration
Original file line number Diff line number Diff line change 1+ // Package mod provides functionality around modules
12package mod
23
34import (
Original file line number Diff line number Diff line change 1+ // Package runner is responsible for running the command and rendering the output
12package runner
23
34import (
@@ -11,6 +12,7 @@ import (
1112 "github.com/olekukonko/tablewriter"
1213)
1314
15+ // OsExit is use here in order to simplify testing
1416var OsExit = os .Exit
1517
1618// Run converts the the json output of go list -u -m -json all to table format
Original file line number Diff line number Diff line change 1+ // Package main is the entry point of the go-mod-outdated tool
12package main
23
34import (
You can’t perform that action at this time.
0 commit comments