Codebase list python-pyproj / run/39bd364e-1066-4761-af0e-2160e22c2d6f/main .pre-commit-config.yaml
run/39bd364e-1066-4761-af0e-2160e22c2d6f/main

Tree @run/39bd364e-1066-4761-af0e-2160e22c2d6f/main (Download .tar.gz)

.pre-commit-config.yaml @run/39bd364e-1066-4761-af0e-2160e22c2d6f/mainraw · history · blame

repos:
    -   repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v4.1.0
        hooks:
        -   id: check-yaml
        -   id: end-of-file-fixer
        -   id: trailing-whitespace
    -   repo: https://github.com/psf/black
        rev: 22.3.0
        hooks:
        -   id: black
    -   repo: https://github.com/timothycrosley/isort
        rev: 5.10.1
        hooks:
        -   id: isort
            args: [setup.py, pyproj/, test/, docs/]
    -   repo: https://github.com/asottile/blacken-docs
        rev: v1.12.1
        hooks:
        -   id: blacken-docs
            args: [--skip-errors]
    -   repo: https://gitlab.com/pycqa/flake8
        rev: 4.0.1
        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]