Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml60
1 files changed, 60 insertions, 0 deletions
diff --git a/.golangci.yml b/.golangci.yml
new file mode 100644
index 00000000..9545dd52
--- /dev/null
+++ b/.golangci.yml
@@ -0,0 +1,60 @@
+run:
+ concurrency: 8
+ deadline: 1m
+ issues-exit-code: 1
+ modules-download-mode: vendor
+ tests: true
+ skip-dirs:
+ - vendor
+ - internal/httputil # from github.com/golang/gddo
+ skip-files:
+ - mock_*.go
+
+output:
+ format: colored-line-number
+ print-issued-lines: true
+ print-linter-name: true
+
+linters-settings:
+ gocyclo:
+ min-complexity: 10
+ govet:
+ check-shadowing: false
+ goconst:
+ min-len: 3
+ min-occurrences: 3
+
+linters:
+ disable-all: true
+ enable:
+# TODO: enable these linters on a separate MR https://gitlab.com/gitlab-org/gitlab-pages/-/issues/385#linters
+# - bodyclose
+# - deadcode
+# - dogsled
+ - goconst
+ - gocyclo
+ - goimports
+ - golint
+ - gosimple
+ - govet
+ - gosec
+# - ineffassign
+# - misspell
+# - structcheck
+# - typecheck
+# - unconvert
+# - unused
+# - varcheck
+# - whitespace
+ fast: false
+
+issues:
+# # Excluding configuration per-path, per-linter, per-text and per-source
+ exclude-rules:
+ - path: ".*_test.go"
+ linters:
+ - bodyclose
+ - gosec
+ - path: "internal/fixture/fixtures.go"
+ linters:
+ - gosec