enbas/.golangci.yaml
Dan Anglin ee13dcde00
All checks were successful
REUSE Compliance Check / check (push) Successful in 6s
chore: update .golangci.yaml
2024-08-16 23:12:17 +01:00

39 lines
637 B
YAML

# SPDX-FileCopyrightText: 2024 Dan Anglin <d.n.i.anglin@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
---
run:
concurrency: 2
timeout: 1m
issues-exit-code: 1
tests: true
output:
formats: colored-line-number
print-issues-lines: true
print-linter-name: true
uniq-by-line: true
sort-results: true
linters-settings:
depguard:
rules:
main:
files:
- $all
allow:
- $gostd
- codeflow.dananglin.me.uk/apollo/enbas
lll:
line-length: 140
linters:
enable-all: true
disable:
- execinquery
- exhaustruct
- gomnd
- mnd
- tagliatelle
fast: false