Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
583 B
27 lines
583 B
linters-settings: |
|
govet: |
|
check-shadowing: true |
|
golint: |
|
min-confidence: 0 |
|
gocyclo: |
|
min-complexity: 40 |
|
maligned: |
|
suggest-new: true |
|
dupl: |
|
threshold: 100 |
|
goconst: |
|
min-len: 2 |
|
min-occurrences: 4 |
|
|
|
linters: |
|
enable-all: true |
|
disable: |
|
- maligned |
|
- lll |
|
- gochecknoglobals |
|
- gochecknoinits |
|
# scopelint is useful, but also reports false positives |
|
# that unfortunately can't be disabled. So we disable the |
|
# linter rather than changing code that works. |
|
# see: https://github.com/kyoh86/scopelint/issues/4 |
|
- scopelint
|
|
|