Skip to content
Snippets Groups Projects
.pre-commit-config.yaml 373 B
Newer Older
  • Learn to ignore specific revisions
  • repos:
    -   repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v2.3.0
        hooks:
    
    Oscar Gustafsson's avatar
    Oscar Gustafsson committed
        - id: check-added-large-files
        - id: check-docstring-first
        - id: check-yaml
        - id: end-of-file-fixer
          exclude_types: [svg]
        - id: trailing-whitespace
          exclude_types: [svg]
    
    -   repo: https://github.com/psf/black
        rev: 22.10.0
        hooks:
    
    Oscar Gustafsson's avatar
    Oscar Gustafsson committed
        - id: black