Files
poseidon/.codeclimate.yml
Maximilian Paß 97a2311a74 Fix CodeClimate duplication smells
by extracting one http helper method and
increasing the threshold for duplication issues.
2022-06-07 16:59:02 +02:00

22 lines
318 B
YAML

version: "2"
checks:
similar-code:
config:
threshold: 110 # Golang default: 100
identical-code:
config:
threshold: 110 # Golang default: 100
plugins:
golint:
enabled: false
govet:
enabled: false
gofmt:
enabled: false
exclude_patterns:
- "**/*_mock.go"
- "**/*_test.go"