Files
Adrian Sieber f06138c97c Fix broken links and tighten link checker
- Drop dead 3DChameleon (404) and Repables (cert expired) entries
- Update URLs to canonical destinations to avoid redirects
- Move OrcaSlicer to its renamed GitHub org
- Add lychee config (UA, GET method, retries, accept 403/429) and
  .lycheeignore for sites with persistent bot detection or session
  redirect loops
2026-04-27 17:30:57 +00:00

26 lines
469 B
Makefile

.PHONY: update-toc
update-toc:
bun x markdown-toc \
--bullets='-' \
-i \
readme.md
.PHONY: lint
lint:
bun x awesome-lint
.PHONY: test
test: lint
lychee \
--max-redirects 0 \
--require-https \
--method get \
--accept '200..=299,403,429' \
--timeout 60 \
--max-retries 3 \
--retry-wait-time 5 \
--user-agent 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36' \
readme.md