Skip to content

Commit

Permalink
lint ignore long lines (doc8, D001)
Browse files Browse the repository at this point in the history
  • Loading branch information
gamesguru committed Jun 24, 2024
1 parent ad29dc4 commit f16fb29
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
run: pip install doc8

- name: Lint RST (doc8)
run: doc8 -q *.rst content/
run: doc8 -q --ignore D001 content/posts/
3 changes: 1 addition & 2 deletions lint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/bin/bash -x

doc8 -q *.rst content/

doc8 -q --ignore D001 content/posts/
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[doc8]

ignore = ["D001"]
# verbose=1

0 comments on commit f16fb29

Please sign in to comment.