Files
gdb-gui/.pre-commit-config.yaml
Tom Tromey 48b2b25526 add flake8
2025-12-06 13:18:16 -06:00

22 lines
546 B
YAML

# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.11.0
hooks:
- id: black
files: 'gui/.*\.py'
- repo: https://github.com/pycqa/flake8
rev: 7.3.0
hooks:
- id: flake8
types_or: [file]
files: '^gui/.*\.py'
args: [--config, setup.cfg]
- repo: https://github.com/pycqa/isort
rev: 7.0.0
hooks:
- id: isort
types_or: [file]
files: '^gui/.*\.py'