aboutsummaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
blob: 0695effb972e583a84926d356e69881050841d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
exclude: '^ethosu/vela/(tflite|ethos_u55_regs)/'
repos:
- repo: https://github.com/ambv/black
  rev: stable
  hooks:
  - id: black
    language_version: python3.6
    args: [--line-length=120]

- repo: https://gitlab.com/pycqa/flake8
  rev: 3.7.9
  hooks:
  - id: flake8
    args: [--max-line-length=120, --extend-ignore=E203]