swh:1:snp:74e3309a6bcaec45bfcbe5072e1c60f497cac9eb
Raw File
Tip revision: 3a823c908d2166eccdd40a5b1ee61b76a9e260d3 authored by Alex Ganose on 28 December 2022, 10:43:16 UTC
Merge pull request #285 from fermisurfaces/dependabot/pip/boltztrap2-22.12.1
Tip revision: 3a823c9
.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