Skip to content

Instantly share code, notes, and snippets.

@PraneethKarnena
Last active December 4, 2022 14:28
Show Gist options
  • Save PraneethKarnena/36e41e23b70d9651c6c109976a038bb6 to your computer and use it in GitHub Desktop.
Save PraneethKarnena/36e41e23b70d9651c6c109976a038bb6 to your computer and use it in GitHub Desktop.
A sample .pre-commit-config.yaml file
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
hooks:
- id: check-yaml
- id: trailing-whitespace
- id: check-added-large-files
- id: check-ast
- id: check-case-conflict
- id: check-json
- id: pretty-format-json
- id: check-merge-conflict
- id: check-symlinks
- id: check-toml
- id: check-vcs-permalinks
- id: check-xml
- id: debug-statements
- id: destroyed-symlinks
- id: detect-private-key
- id: forbid-new-submodules
- id: mixed-line-ending
- id: name-tests-test
- id: requirements-txt-fixer
- id: sort-simple-yaml
- id: end-of-file-fixer
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/PyCQA/isort
rev: 5.9.3
hooks:
- id: isort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment