aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/ini.v1/.golangci.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gopkg.in/ini.v1/.golangci.yml')
-rw-r--r--vendor/gopkg.in/ini.v1/.golangci.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/vendor/gopkg.in/ini.v1/.golangci.yml b/vendor/gopkg.in/ini.v1/.golangci.yml
new file mode 100644
index 0000000..631e369
--- /dev/null
+++ b/vendor/gopkg.in/ini.v1/.golangci.yml
@@ -0,0 +1,27 @@
1linters-settings:
2 staticcheck:
3 checks: [
4 "all",
5 "-SA1019" # There are valid use cases of strings.Title
6 ]
7 nakedret:
8 max-func-lines: 0 # Disallow any unnamed return statement
9
10linters:
11 enable:
12 - deadcode
13 - errcheck
14 - gosimple
15 - govet
16 - ineffassign
17 - staticcheck
18 - structcheck
19 - typecheck
20 - unused
21 - varcheck
22 - nakedret
23 - gofmt
24 - rowserrcheck
25 - unconvert
26 - goimports
27 - unparam