1
0
mirror of https://github.com/xorcare/testing-go-code-with-postgres.git synced 2025-06-30 23:23:40 +02:00
Files
testing-go-code-with-postgres/.golangci.yml

30 lines
595 B
YAML
Raw Normal View History

linters:
disable-all: true
enable:
- errcheck
- godot
2024-10-06 16:10:14 +03:00
- gofumpt
- goimports
- gosimple
- govet
- ineffassign
- misspell
- staticcheck
- testifylint
- testpackage
- typecheck
- unused
- whitespace
- wsl
linters-settings:
2024-06-30 22:26:42 +03:00
goimports:
local-prefixes: github.com/xorcare/testing-go-code-with-postgres
2024-10-06 16:10:14 +03:00
gofumpt:
module-path: github.com/xorcare/testing-go-code-with-postgres
unused:
field-writes-are-uses: false
post-statements-are-reads: true
exported-fields-are-used: false
local-variables-are-used: false