Initial commit, valiwork as framework is ready to use.

This commit is contained in:
2019-12-03 21:21:57 +05:00
commit 169b9499fe
11 changed files with 596 additions and 0 deletions

17
.golangci.yml Normal file
View File

@@ -0,0 +1,17 @@
run:
deadline: 5m
linters:
enable-all: true
disable:
# Because globals might exist, but according to our codestyle they
# should be lowercased and considered as unexported.
- gochecknoglobals
# While it might be useful it'll create more problems that will solve.
- gocritic
# This linter goes crazy for nothing (almost).
- funlen
linters-settings:
lll:
line-length: 420
gocyclo:
min-complexity: 40