X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=.pre-commit-config.yaml;h=984ea24d3ba2ec8a630297e0b0c8eec7b520797c;hb=a254df8d0b68df0daf98ba407643d84cd75f5b98;hp=d0d5be76e3d6cb7f79cc54ce708e421e2a5678d9;hpb=2d0ec4dfe973add978361ef21d56f2409f28038b;p=releng%2Fglobal-jjb.git diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d0d5be76..984ea24d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,3 +19,59 @@ repos: rev: 2.1.1 hooks: - id: shellcheck + + - repo: local + hooks: + # TODO: Switch to upstream hook when https://github.com/btford/write-good/pull/119 is merged. + - id: write-good + name: write-good + description: Check docs for English prose with write-good + entry: write-good + language: node + files: "\\.(rst|md|markdown|mdown|mkdn)$" + additional_dependencies: ["write-good"] + exclude: > + (?x)^( + docs/jjb/lf-c-cpp-jobs.rst| + docs/jjb/lf-ci-jobs.rst| + docs/jjb/lf-macros.rst| + docs/jjb/lf-python-jobs.rst + )$ + + # TODO: Switch to upstream hook when https://github.com/btford/write-good/pull/119 is merged. + # Files listed below break the following write-good rules: + # - adverb weakens meaning + # - is wordy or unneeded + # + # This allows us to place an exception need to pass the check without disabling all checks for + # the whole file. + # In an ideal world write-good would give us an override for each individual instance of a + # violation but until then this gives us a close enough approach. + - id: write-good + name: write-good --no-adverb --no-tooWordy + description: Check docs for English prose with write-good + entry: write-good --no-adverb --no-tooWordy + language: node + files: docs/jjb/lf-ci-jobs.rst + additional_dependencies: ["write-good"] + + # TODO: Switch to upstream hook when https://github.com/btford/write-good/pull/119 is merged. + # Files listed below break the following write-good rules: + # - is wordy or unneeded + # + # This allows us to place an exception need to pass the check without disabling all checks for + # the whole file. + # In an ideal world write-good would give us an override for each individual instance of a + # violation but until then this gives us a close enough approach. + - id: write-good + name: write-good --no-tooWordy + description: Check docs for English prose with write-good + entry: write-good --no-tooWordy + language: node + files: > + (?x)^( + docs/jjb/lf-c-cpp-jobs.rst| + docs/jjb/lf-macros.rst| + docs/jjb/lf-python-jobs.rst + )$ + additional_dependencies: ["write-good"]