summaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: 6e0c1471c1772b8ee7260a7a2fd19b9c4cf21f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
repos:
- repo: https://github.com/pycqa/isort
  rev: 5.11.2
  hooks:
    - id: isort
      name: isort (python)

- repo: local
  hooks:
    - id: pylint
      name: pylint
      entry: pylint
      language: system
      types: [python]

- repo: https://github.com/pre-commit/mirrors-yapf
  rev: "v0.32.0" # Use the sha / tag you want to point at
  hooks:
    - id: yapf
      additional_dependencies: ["toml"]