Created
September 3, 2020 15:22
-
-
Save rpdelaney/1a5b366f9040e6ee81424df4783ae341 to your computer and use it in GitHub Desktop.
pre-commit config for hooks issue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
default_stages: [commit] | |
repos: | |
- repo: meta | |
hooks: | |
- id: check-hooks-apply | |
- id: check-useless-excludes | |
- repo: https://github.com/pre-commit/pre-commit-hooks | |
rev: v3.2.0 | |
hooks: | |
- id: end-of-file-fixer | |
- id: mixed-line-ending | |
args: [--fix=lf] | |
- id: trailing-whitespace | |
args: [--markdown-linebreak-ext=md] | |
- id: check-added-large-files | |
- id: check-executables-have-shebangs | |
- id: check-merge-conflict | |
- id: detect-private-key | |
- id: check-docstring-first | |
- id: check-toml | |
- id: check-yaml | |
- repo: local | |
hooks: | |
- id: pytest | |
name: run all tests | |
stages: [push] | |
language: system | |
entry: poetry run pytest --full-trace | |
pass_filenames: false | |
- id: pyproject.toml | |
name: validate pyproject.toml | |
language: system | |
entry: poetry check | |
files: 'pyproject\.toml' | |
pass_filenames: false | |
- id: version | |
name: verify version is set correctly | |
language: system | |
entry: pytest --quiet --no-header --no-summary --no-cov -k version | |
files: 'pyproject\.toml|downforeveryone/__init__.py' | |
pass_filenames: false | |
- id: isort | |
name: isort | |
language: system | |
entry: poetry run isort | |
types: [python] | |
- id: black | |
name: black | |
language: system | |
entry: poetry run black | |
types: [python] | |
- id: flake8 | |
name: flake8 | |
language: system | |
entry: poetry run flake8 | |
types: [python] | |
- id: shellcheck | |
name: shellcheck | |
language: system | |
entry: shellcheck | |
types: [shell] | |
- id: mypy | |
name: mypy | |
language: system | |
entry: poetry run mypy | |
types: [python] | |
- repo: https://github.com/PyCQA/doc8 | |
rev: 0.9.0a0 | |
hooks: | |
- id: doc8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment