forked from shapeblue/cloudstack-csi-driver
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.golangci.yml
More file actions
42 lines (39 loc) · 717 Bytes
/
.golangci.yml
File metadata and controls
42 lines (39 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
issues:
exclude-use-default: true
max-issues-per-linter: 50
max-same-issues: 0 # disable
exclude-rules:
- path: _test.go
linters:
- funlen
- nestif
linters-settings:
gci:
sections:
- standard
- default
- prefix(github.com/cloudstack/cloudstack-csi-driver)
goimports:
local-prefixes: github.com/cloudstack/cloudstack-csi-driver
misspell:
locale: US
linters:
enable-all: true
disable:
- cyclop
- depguard
- err113
- exhaustruct
- funlen
- gochecknoglobals
- gomnd
- inamedparam
- ireturn
- lll
- mnd
- paralleltest
- tagliatelle
- testpackage
- varnamelen
- wrapcheck
- wsl