Skip to content

Commit

Permalink
Add pre_push tasks to .pre-commit-config.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
LilSpazJoekp committed Jul 30, 2021
1 parent e7f63b1 commit 6a06576
Showing 1 changed file with 46 additions and 6 deletions.
52 changes: 46 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,47 @@
fail_fast: true
repos:
- hooks:
- id: black
language_version: python3
repo: https://github.com/psf/black
rev: 20.8b1
- repo: local
hooks:
- id: static_word_checks
args:
- '--replace'
entry: python -m tools.static_word_checks
language: system
name: Static Word Checks
pass_filenames: false
types: [ python ]

- id: check_documentation
entry: python -m tools.check_documentation
language: system
name: Check Documentation
pass_filenames: false
types: [ python ]

- repo: https://github.com/psf/black
hooks:
- id: black
language_version: python3 # Should be a command that runs python3.6+
rev: 21.7b0

- repo: https://github.com/LilSpazJoekp/docstrfmt
hooks:
- id: docstrfmt
verbose: true
rev: v1.4.0

- repo: https://github.com/pycqa/flake8
hooks:
- id: flake8
rev: 3.9.2

- repo: https://github.com/pycqa/isort
hooks:
- id: isort
name: isort (python)
rev: 5.9.3

- repo: https://github.com/pycqa/pydocstyle
hooks:
- id: pydocstyle
files: praw/.*
rev: 6.1.1

0 comments on commit 6a06576

Please sign in to comment.