diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7782bfc..25ea4a4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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/ diff --git a/lint.sh b/lint.sh index 4e04803..4db37a1 100755 --- a/lint.sh +++ b/lint.sh @@ -1,4 +1,3 @@ #!/bin/bash -x -doc8 -q *.rst content/ - +doc8 -q --ignore D001 content/posts/ diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..04061cc --- /dev/null +++ b/setup.cfg @@ -0,0 +1,4 @@ +[doc8] + +ignore = ["D001"] +# verbose=1