Codebase list python-pyproj / d1831a87-24cf-4e25-bda6-426e22ca60b9/main .pre-commit-config.yaml
d1831a87-24cf-4e25-bda6-426e22ca60b9/main

Tree @d1831a87-24cf-4e25-bda6-426e22ca60b9/main (Download .tar.gz)

.pre-commit-config.yaml @d1831a87-24cf-4e25-bda6-426e22ca60b9/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]