website/.golangci.yaml
Dan Anglin a0e3ee8a6f
feat: add a landing page for the Flow Platform
Add a landing page for the Flow Platform. The landing page is a
linktree-styled static page made with Go, HTML and CSS.
2023-08-24 13:15:55 +01:00

25 lines
358 B
YAML

---
run:
concurrency: 2
timeout: 1m
issues-exit-code: 1
tests: true
output:
format: colored-line-number
print-issues-lines: true
print-linter-name: true
uniq-by-line: true
sort-results: true
linters-settings:
lll:
line-length: 140
linters:
enable-all: true
disable:
- exhaustruct
- exhaustivestruct
- gomnd
fast: false