Skip to content

Commit

Permalink
Add spellcheck (and scope for future linting)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan O'Cais committed Jun 17, 2020
1 parent a15eb32 commit 4778daf
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 13 additions & 0 deletions .markdownlint.json
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
}

0 comments on commit 4778daf

Please sign in to comment.