Skip to content

Commit

Permalink
Stop the markdown linter from whining about a problem that isn't wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen committed Jan 20, 2023
1 parent cc217ca commit 6044da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Pull markdownlint/markdownlint:latest Image
run: docker pull markdownlint/markdownlint:latest
- name: Run markdownlint against *.md files
run: docker run --rm -i -v "$(pwd)":/workdir --workdir /workdir markdownlint/markdownlint:latest -r ~MD013 $(find . -type f -iname '*.md' | grep -v '/.git/')
run: docker run --rm -i -v "$(pwd)":/workdir --workdir /workdir markdownlint/markdownlint:latest -r ~MD013,~MD007 $(find . -type f -iname '*.md' | grep -v '/.git/')

flake8:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6044da2

Please sign in to comment.