-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Completely resolves STAR-1. This also properly adds ignore files for `markdownlint` as that didn't properly work beforehand.
- Loading branch information
Showing
6 changed files
with
40 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!-- | ||
For Work In Progress Pull Requests, please use the Draft PR feature, | ||
https://github.blog/2019-02-14-introducing-draft-pull-requests/. | ||
--> | ||
|
||
## Checklist | ||
|
||
- [ ] I have read [the Contribution Guidelines](/CONTRIBUTING.md). | ||
- [ ] [Tests](/vitest.config.ts) have been added if applicable. | ||
- [ ] The changes have been well documented and explained in this PR. | ||
- [ ] If relevant I have attached screenshot(s) of the change. | ||
- [ ] [Documentation](/docs/) has been updated. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/main/schema/markdownlint-cli2-config-schema.json", | ||
"config": { | ||
"default": true, | ||
"spaces": true, | ||
"no-hard-tabs": true, | ||
"no-trailing-punctuation": { | ||
"punctuation": ".,;:!。,;:!" | ||
}, | ||
"list-marker-space": { | ||
"ol_single": 1, | ||
"ol_multi": 1, | ||
"ul_single": 1, | ||
"ul_multi": 1 | ||
}, | ||
"ul-indent": { | ||
"indent": 1, | ||
"start_indent": 1, | ||
"start_indented": true | ||
}, | ||
"line-length": false, | ||
"first-line-heading": false | ||
}, | ||
"ignores": ["**/.changeset/**.md", "**/CHANGELOG.md"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters