Codebase list python-procrunner / 7eac829 .pre-commit-config.yaml
7eac829

Tree @7eac829 (Download .tar.gz)

.pre-commit-config.yaml @7eac829raw · history · blame

repos:

# Automatic source code formatting
- repo: https://github.com/psf/black
  rev: 19.10b0
  hooks:
  - id: black
    args: [--safe, --quiet]
    files: \.pyi?$|SConscript$|^libtbx_config$
    types: [file]

# Syntax check and some basic flake8
- repo: https://github.com/pre-commit/pre-commit-hooks
  rev: v2.0.0
  hooks:
  - id: check-ast
  - id: check-yaml
  - id: flake8
    args: ['--max-line-length=88', '--select=E401,E711,E712,E713,E714,E721,E722,E901,F401,F402,F403,F405,F631,F632,F633,F811,F812,F821,F822,F841,F901,W191,W291,W292,W293,W602,W603,W604,W605,W606']
  - id: check-merge-conflict