Skip to content

Commit 3fd50a4

Browse files
dev: lychee spell config file for megalinter workflow
Exclude localhost and http URL checks
1 parent d685bce commit 3fd50a4

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/config/lychee.toml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# ----------------------------------------
2+
# Base URL or website root directory to check relative URLs.
3+
base = "https://github.com/practicalli/clojure-cli-config/"
4+
5+
# Only test links with the given schemes (e.g. https).
6+
# Omit to check links with any other scheme.
7+
# At the moment, we support http, https, file, and mailto.
8+
scheme = ["https"]
9+
10+
# ----------------------------------------
11+
# Exclusions
12+
13+
# Exclude URLs and mail addresses from checking (supports regex).
14+
exclude = ['^https://localhost',
15+
'^https://127.0.0.0']
16+
17+
# Exclude these filesystem paths from getting checked.
18+
exclude_path = ["mkdocs.yml", "overrides", "includes", ".github", ".git"]
19+
20+
# Exclude all private IPs from checking.
21+
# Equivalent to setting `exclude_private`, `exclude_link_local`, and
22+
# `exclude_loopback` to true.
23+
exclude_all_private = true
24+
25+
# Check mail addresses
26+
include_mail = false
27+
# ----------------------------------------

CHANGELOG.org

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
** Updated
77
- dev: megalinter v8.1.0 supports Grafana dashboards in flavors
8+
- dev: lychee spell config file for megalinter workflow
89

910
* 2024-09-09
1011
** Added

0 commit comments

Comments
 (0)