Skip to content

Commit ff3ae62

Browse files
committed
Merge commit 'bfa74537929f409fca841540b971125b7678963a'
2 parents 12ace3a + bfa7453 commit ff3ae62

File tree

196 files changed

+2291
-1999
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+2291
-1999
lines changed

‎docs/.codespellrc‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
[codespell]
55

66
# Comma separated list of dirs to be skipped.
7-
skip = _vendor,.cspell.json,chroma.css,chroma_dark.css
7+
skip = *.ai,chroma.css,chroma_dark.css,.cspell.json
88

99
# Comma separated list of words to be ignored. Words must be lowercased.
10-
ignore-words-list = abl,edn,te,ue,trys,januar,womens,crossreferences
10+
ignore-words-list = abl,edn,januar,te,trys,ue,womens
1111

1212
# Check file names as well.
1313
check-filenames = true

‎docs/.cspell.json‎

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
{
22
"version": "0.2",
33
"allowCompoundWords": true,
4-
"files": [
5-
"**/*.md"
4+
"overrides": [
5+
{
6+
"filename": "**/*",
7+
"enabled": false
8+
},
9+
{
10+
"filename": "**/*.md",
11+
"enabled": true
12+
}
613
],
714
"flagWords": [
815
"alot",
@@ -64,6 +71,7 @@
6471
"templating",
6572
"transpile",
6673
"unmarshal",
74+
"unmarshaled",
6775
"unmarshaling",
6876
"unmarshals",
6977
"# ----------------------------------------------------------------------",
@@ -100,6 +108,8 @@
100108
"descripción",
101109
"dokumentation",
102110
"erklärungen",
111+
"español",
112+
"français",
103113
"libros",
104114
"mercredi",
105115
"miesiąc",
@@ -147,6 +157,7 @@
147157
"dpkg",
148158
"doas",
149159
"eopkg",
160+
"forgejo",
150161
"gitee",
151162
"goldmark",
152163
"katex",

‎docs/.github/stale.yml‎

Lines changed: 0 additions & 22 deletions
This file was deleted.

‎docs/.github/workflows/codeql-analysis.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Initialize CodeQL
2121
uses: github/codeql-action/init@v3
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Lint markdown
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout repository
10+
uses: actions/checkout@v5
11+
- name: Run Markdown linter
12+
uses: DavidAnson/markdownlint-cli2-action@v20
13+
with:
14+
globs: # set to null to override default of *.{md,markdown}
15+
continue-on-error: false

‎docs/.github/workflows/spellcheck.yml‎

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@ jobs:
1212
spellcheck:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
16-
- uses: streetsidesoftware/cspell-action@v5
15+
- uses: actions/checkout@v5
16+
- uses: streetsidesoftware/cspell-action@v7
1717
with:
18-
check_dot_files: false
19-
files: content/**/*.md
2018
incremental_files_only: true
21-
inline: warning
22-
strict: false
19+
strict: true
20+
# cspell uses the .cspell.json configuration file
2321
- uses: codespell-project/actions-codespell@v2
2422
with:
2523
check_filenames: true
2624
check_hidden: true
27-
# by default, codespell uses configuration from the .codespellrc
25+
# codespell uses the .codespellrc file

‎docs/.github/workflows/stale.yml‎

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Close stale issues and pull requests
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: "30 1 * * *"
6+
permissions:
7+
contents: read
8+
jobs:
9+
stale:
10+
permissions:
11+
contents: read
12+
issues: write
13+
pull-requests: write
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/stale@v9
17+
with:
18+
days-before-stale: 90 # default is 60
19+
days-before-close: 14 # default is 7
20+
exempt-all-assignees: true
21+
exempt-draft-pr: true
22+
exempt-issue-labels: Keep, InProgress, NeedsTriage
23+
exempt-pr-labels: Keep
24+
operations-per-run: 100
25+
stale-issue-message: >
26+
This issue has been marked as stale because there hasn't been any
27+
recent activity. It will be closed soon if there are no further
28+
updates.
29+
stale-pr-message: >
30+
This pull request has been marked as stale because there hasn't
31+
been any recent activity. It will be closed soon if there are no
32+
further updates.

‎docs/.github/workflows/super-linter.yml‎

Lines changed: 0 additions & 41 deletions
This file was deleted.

‎docs/.markdownlint-cli2.yaml‎

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# Glob patterns to include
2+
globs:
3+
- "content/**/*.md"
4+
5+
# Glob patterns to exclude
6+
ignores:
7+
- "content/**/commands/**"
8+
- "content/en/about/license.md"
9+
- "content/LICENSE.md"
10+
11+
# Markdownlint rules and configuration
12+
# https://github.com/DavidAnson/markdownlint?tab=readme-ov-file#rules--aliases
13+
config:
14+
MD001: true
15+
# MD002 deprecated
16+
MD003:
17+
style: atx
18+
MD004:
19+
style: dash
20+
MD005: true
21+
# MD006 deprecated
22+
MD007: false # if enabled, throws errors when definition descriptions contain list items
23+
# MD008 deprecated
24+
MD009: true
25+
MD010: true
26+
MD011: true
27+
MD012: true
28+
MD013: false
29+
MD014: true
30+
# MD015 deprecated
31+
# MD016 deprecated
32+
# MD017 deprecated
33+
MD018: true
34+
MD019: true
35+
MD020: true
36+
MD021: true
37+
MD022: true
38+
MD023: true
39+
MD024: true
40+
MD025: true
41+
MD026: true
42+
MD027: true
43+
MD028: false
44+
MD029:
45+
style: one
46+
MD030: true
47+
MD031: true
48+
MD032: true
49+
MD033: true
50+
MD034: false
51+
MD035:
52+
style: ---
53+
MD036: true
54+
MD037: true
55+
MD038: true
56+
MD039: true
57+
MD040: true
58+
MD041: false
59+
MD042: true
60+
MD043: false
61+
MD044: false
62+
MD045: true
63+
MD046: false
64+
MD047: true
65+
MD048:
66+
style: backtick
67+
MD049:
68+
style: underscore
69+
MD050:
70+
style: asterisk
71+
MD051: false
72+
MD052: true
73+
MD053: true
74+
MD054:
75+
autolink: true
76+
collapsed: true
77+
full: true
78+
inline: true
79+
shortcut: true
80+
url_inline: true
81+
MD055:
82+
style: consistent
83+
MD056: true
84+
# MD057 deprecated
85+
MD058: true
86+
MD059:
87+
prohibited_texts:
88+
- click here
89+
- here
90+
- link
91+
- more

‎docs/.markdownlint.yaml‎

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)