web-crawler/.golangci.yaml
Dan Anglin d4633344f7
feat: add the web crawler
Add the source code for the web crawler. The web crawler is a simple Go
CLI application that traverses through a website and generates a report
of all the internal links found in the site.
2024-08-27 15:16:29 +01:00

24 lines
338 B
YAML

---
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:
lll:
line-length: 140
linters:
enable-all: true
disable:
- execinquery
- gomnd
fast: false