mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-09-15 12:50:11 +00:00

Golang uses: - Camel Case for variable names, e.g. `firstName` - Camel Case for private function names, e.g. `getFirstName` - Pascal Case for public function names, e.g. `GetFirstName` Signed-off-by: Julian Strobl <jmastr@mailbox.org>
25 lines
393 B
YAML
25 lines
393 B
YAML
---
|
|
run:
|
|
timeout: 5m
|
|
linters:
|
|
enable:
|
|
- errcheck
|
|
- forbidigo
|
|
- gosimple
|
|
- govet
|
|
- ineffassign
|
|
- nosnakecase
|
|
- staticcheck
|
|
- unused
|
|
issues:
|
|
exclude-rules:
|
|
- path: codec\.go
|
|
linters:
|
|
- nosnakecase
|
|
- path: app\/simulation_test\.go
|
|
linters:
|
|
- nosnakecase
|
|
- path: testutil\/rest\.go
|
|
linters:
|
|
- nosnakecase
|