Skip to content

Commit a3aba77

Browse files
committed
Disabling line length and HTML usage rules
1 parent b113fb6 commit a3aba77

3 files changed

Lines changed: 8 additions & 19 deletions

File tree

.github/markdownlint.jsonc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"default": true,
3-
"MD013": {
4-
"line_length": 120
5-
},
3+
"MD013": false,
4+
"MD033": false,
65
"MD034": false,
76
"MD041": false,
87
"MD007": {

.github/workflows/markdown.yml

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,9 @@ jobs:
5757
with:
5858
ref: ${{ github.head_ref }}
5959

60-
- name: Setup Node.js
61-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
60+
- name: Check Links
61+
uses: tcort/github-action-markdown-link-check@a800ad5f1c35bf61987946fd31c15726a1c9f2ba # v1.1.0
6262
with:
63-
node-version: '20'
64-
65-
- name: Install markdown-link-check
66-
run: npm install --save-dev markdown-link-check
67-
68-
- name: Run markdown-link-check on all markdown files
69-
run: |
70-
for file in $(find . -name '*.md' -not -path './node_modules/*'); do
71-
echo "Checking $file"
72-
npx markdown-link-check "$file" --config .github/markdown-link-check.jsonc -v || exit 1
73-
done
74-
63+
use-quiet-mode: 'no'
64+
use-verbose-mode: 'yes'
65+
config-file: '.github/markdown-link-check.jsonc'

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ session.
155155

156156
The following table describes the actions available in the debug toolbar:
157157

158-
<!-- markdownlint-disable MD013 MD033 -->
159158
| Action | Description |
160159
|--------|-------------|
161160
| Continue/Pause (F5) | **Continue**: Resume normal program/script execution (up to the next breakpoint).<br>**Pause**: Inspect code executing at the current line and debug line-by-line. |
@@ -164,7 +163,7 @@ The following table describes the actions available in the debug toolbar:
164163
| Step Out (Shift + F11) | When inside a method or subroutine, return to the earlier execution context by completing remaining lines of the current method as though it were a single command. |
165164
| Restart (Shift + Ctrl/Cmd + F5) | Terminate the current program execution and start debugging again using the current run configuration. |
166165
| Stop (Shift + F5) | Terminate the current program execution. |
167-
<!-- markdownlint-enable MD013 MD033 -->
166+
168167
If your debugging sessions involve multiple targets (for example, a multi-core device), the debug toolbar shows the
169168
list of sessions and lets you switch between them.
170169

0 commit comments

Comments
 (0)