Codebase list python-pyproj / abce6ceb-ff91-4a43-b61a-67288cc9160a/main .pre-commit-config.yaml
abce6ceb-ff91-4a43-b61a-67288cc9160a/main

Tree @abce6ceb-ff91-4a43-b61a-67288cc9160a/main (Download .tar.gz)

.pre-commit-config.yaml @abce6ceb-ff91-4a43-b61a-67288cc9160a/mainraw · history · blame

repos:
    -   repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v3.2.0
        hooks:
        -   id: check-yaml
        -   id: end-of-file-fixer
        -   id: trailing-whitespace
    -   repo: https://github.com/psf/black
        rev: 20.8b1
        hooks:
        -   id: black
    -   repo: https://github.com/timothycrosley/isort
        rev: 5.6.1
        hooks:
        -   id: isort
            args: [setup.py, pyproj/, test/, docs/]
    -   repo: https://github.com/asottile/blacken-docs
        rev: v1.8.0
        hooks:
        -   id: blacken-docs
            args: [--skip-errors]
    -   repo: https://gitlab.com/pycqa/flake8
        rev: 3.8.4
        hooks:
        -   id: flake8
            additional_dependencies: [flake8-comprehensions>=3.1.0]
        -   id: flake8
            name: flake8-pyx
            files: \.(pyx|pxd)$
            types:
            - file
            args: [--append-config=flake8/cython.cfg]