Revision 1032f72ded89eccd311dd411cc7df463813ac504 authored by dependabot[bot] on 04 July 2022, 20:09:05 UTC, committed by GitHub on 04 July 2022, 20:09:05 UTC
1 parent bb7a1fe
Raw File
.pre-commit-config.yaml
repos:
  - repo: https://github.com/myint/autoflake
    rev: v1.4
    hooks:
    - id: autoflake
      args: [--in-place, --remove-all-unused-imports, --remove-unused-variable, --ignore-init-module-imports]
  - repo: https://github.com/psf/black
    rev: 21.7b0
    hooks:
    - id: black
  - repo: https://gitlab.com/pycqa/flake8
    rev: 3.9.2
    hooks:
      - id: flake8
        args: [--max-line-length=125, "--extend-ignore=E203,W503"]
        language_version: python3
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.0.1
    hooks:
      - id: check-yaml
      - id: end-of-file-fixer
      - id: trailing-whitespace
  - repo: https://github.com/pycqa/isort
    rev: 5.9.2
    hooks:
      - id: isort
        name: isort (python)
        args: [--profile=black]
back to top