rentease/.golangci.yml
Ruidy 40d2338c0f
feat(logging): add slog-based structured logging
Introduce slog-based structured logging throughout the booking service
and
server handlers. Add configurable log level via LOG_LEVEL environment
variable. Replace legacy log usage with slog and propagate logger to
booking service for improved observability.
2025-09-12 12:17:22 -04:00

10 lines
217 B
YAML

version: "2"
linters:
default: none
enable:
- sloglint
settings:
sloglint:
# Enforce using attributes only.
# This will raise an error for any key-value pair arguments.
attr-only: true