mirror of
https://github.com/tromey/gdb-gui.git
synced 2025-12-13 14:00:05 +01:00
22 lines
546 B
YAML
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'
|