mirror of
https://github.com/onsonr/hway.git
synced 2025-03-10 13:07:09 +00:00
31 lines
536 B
YAML
31 lines
536 B
YAML
linters:
|
|
disable:
|
|
- unused # Disables unreachable code checking
|
|
|
|
run:
|
|
# Exclude test files from analysis
|
|
tests: false
|
|
|
|
# Define which files and directories to exclude
|
|
issues:
|
|
exclude-rules:
|
|
# Exclude all test files
|
|
- path: _test\.go
|
|
linters:
|
|
- all
|
|
|
|
# Exclude specific directories
|
|
exclude-dirs:
|
|
- app
|
|
- app/common
|
|
- app/context
|
|
- app/views
|
|
- cmd/hway
|
|
- handlers
|
|
- internal
|
|
|
|
# Exclude specific file patterns
|
|
exclude-files:
|
|
- ".*\\.pb\\.go$"
|
|
- ".*_templ\\.go$"
|