aboutsummaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: 3ff2182c21ace9016dd9ae52ead63ca6250f7ef0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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: 24.4.0
    hooks:
      - id: black
        types_or: [file]
        files: 'gdb/.*\.py(\.in)?$'
  - repo:  https://github.com/pycqa/flake8
    rev: 7.0.0
    hooks:
    - id: flake8
      types_or: [file]
      # Note this one is only run on gdb/python, not (for now) the
      # test suite.
      files: 'gdb/python/.*\.py(\.in)?$'
      args: [--config, gdb/setup.cfg]
  - repo: https://github.com/pycqa/isort
    rev: 5.13.2
    hooks:
    - id: isort
      types_or: [file]
      files: 'gdb/.*\.py(\.in)?$'