Skip to content

Commit 6cf2f54

Browse files
committed
chore: ✨ Update markdownlint configuration and changelog
* Added new rules for `MD013` to disable checks for code blocks and tables. * Documented breaking changes in `CHANGELOG.md` regarding UTF-8 file compilation and markdown file overwriting.
1 parent 0989929 commit 6cf2f54

File tree

3 files changed

+113
-79
lines changed

3 files changed

+113
-79
lines changed

.markdownlint.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@
22
"$schema": "https://raw.githubusercontent.com/DavidAnson/vscode-markdownlint/refs/heads/main/markdownlint-config-schema.json",
33
"MD024": {
44
"siblings_only": true
5+
},
6+
"MD013": {
7+
"code_blocks": false,
8+
"tables": false
59
}
610
}

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
### Breaking Changes
11+
1012
- [**#71**](https://github.com/psake/PowerShellBuild/pull/71) Compiled modules
1113
are now explicitly created as UTF-8 files.
12-
14+
- [**#67**](https://github.com/psake/PowerShellBuild/pull/67) Overwrite existing
15+
markdown files and use the comment based help as the source of truth. This can
16+
be disabled if `$PSBPreference.Docs.Overwrite` is set to `$false`.
1317

1418
## [0.6.2] 2024-10-06
1519

0 commit comments

Comments
 (0)