You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/LINTING.md
+28-1Lines changed: 28 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,18 +6,45 @@
6
6
7
7
- Markdownlint must be installed as an extension (extension id: `DavidAnson.vscode-markdownlint`) for local markdown linting to work within VS Code or Cursor on save.
8
8
- Or run in directly using [markdownlint-cli2](https://github.com/DavidAnson/markdownlint-cli2).
9
-
-`markdownlint-cli2` is included in the asdf toolversions file.
9
+
-`markdownlint-cli2` is included in the asdf [`.tool-versions`](../.tool-versions) file.
10
10
See <https://github.com/paulo-ferraz-oliveira/asdf-markdownlint-cli2>.
- ShellCheck must be installed as an extension (extension id: `timonwong.shellcheck`) forlocal shell script linting to work within VS Code or Cursor on save.
19
+
- Or run it directly using the [ShellCheck CLI](https://github.com/koalaman/shellcheck#installing).
20
+
- `shellcheck` is included in the asdf [`.tool-versions`](../.tool-versions) file.
21
+
22
+
```sh
23
+
shellcheck *.sh
24
+
```
25
+
16
26
## Configuration
17
27
28
+
### Markdown
29
+
18
30
MarkdownLint uses [`.markdownlint-cli2.jsonc`](../..markdownlint-cli2.jsonc) to configure the markdown linting rules and to ignore linting for specific files and paths.
19
31
See <https://github.com/DavidAnson/markdownlint-cli2/tree/main?tab=readme-ov-file#markdownlint-cli2jsonc>
20
32
33
+
### Shell
34
+
35
+
ShellCheck uses [`.shellcheckrc`](../.shellcheckrc) to configure linting rules.
0 commit comments