aboutsummaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: 12f3d79c9353339f51cd197d2cb170fc7f624dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
repos:
  - repo: local
    hooks:
      - id: codeformat
        name: MicroPython codeformat.py for changed files
        entry: tools/codeformat.py -v -f
        language: python
      - id: verifygitlog
        name: MicroPython git commit message format checker
        entry: tools/verifygitlog.py --check-file --ignore-rebase
        language: python
        verbose: true
        stages: [commit-msg]