-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add spellcheck (and scope for future linting)
- Loading branch information
Alan O'Cais
committed
Jun 17, 2020
1 parent
a15eb32
commit 4778daf
Showing
2 changed files
with
23 additions
and
0 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 |
---|---|---|
|
@@ -13,6 +13,16 @@ jobs: | |
with: | ||
python-version: 3.8 | ||
|
||
- name: Codespell action | ||
uses: plettich/[email protected] | ||
|
||
#- name: Markdown Linting Action | ||
# uses: avto-dev/[email protected] | ||
# with: | ||
# rules: '/lint/rules/changelog.js' | ||
# config: '/lint/config/changelog.yml' | ||
# args: '.' | ||
|
||
- name: install mkdocs | ||
run: | | ||
pip install mkdocs mkdocs-material mkdocs-git-revision-date-localized-plugin | ||
|
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,13 @@ | ||
{ | ||
"comment": "Relaxed rules", | ||
|
||
"default": true, | ||
"whitespace": false, | ||
"MD013": { "line_length": 120 }, | ||
"ul-start-left": false, | ||
"ul-indent": false, | ||
"no-inline-html": false, | ||
"no-bare-urls": false, | ||
"fenced-code-language": false, | ||
"first-line-h1": false | ||
} |