🎉 live server seems to be working now
This commit is contained in:
33
third_party/sendspin-go/.golangci.yml
vendored
Normal file
33
third_party/sendspin-go/.golangci.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
# ABOUTME: golangci-lint configuration for CI linting
|
||||
# ABOUTME: Defines linters and rules for code quality checks
|
||||
run:
|
||||
timeout: 5m
|
||||
tests: true
|
||||
|
||||
linters:
|
||||
disable-all: true
|
||||
enable:
|
||||
- gosimple
|
||||
- govet
|
||||
- ineffassign
|
||||
- unused
|
||||
- gofmt
|
||||
- goimports
|
||||
- misspell
|
||||
|
||||
linters-settings:
|
||||
gocyclo:
|
||||
min-complexity: 25
|
||||
|
||||
issues:
|
||||
exclude-use-default: true
|
||||
max-issues-per-linter: 50
|
||||
max-same-issues: 10
|
||||
|
||||
exclude-rules:
|
||||
# Exclude linters from test files
|
||||
- path: _test\.go
|
||||
linters:
|
||||
- errcheck
|
||||
- gocyclo
|
||||
- dupl
|
||||
Reference in New Issue
Block a user