blob: 9280ab71f964aa2789823de21fb0fb6382655004 [file] [log] [blame]
Eric Kunze58098a72022-08-05 15:40:12 -07001# Copyright (c) 2022 Arm Limited.
2# SPDX-License-Identifier: Apache-2.0
3
4# See https://pre-commit.com for more information
5# See https://pre-commit.com/hooks.html for more hooks
6repos:
7- repo: https://github.com/asottile/reorder_python_imports
8 rev: v3.0.1
9 hooks:
10 - id: reorder-python-imports
11
12- repo: https://github.com/psf/black
13 rev: 22.3.0
14 hooks:
15 - id: black
16
17- repo: https://github.com/pycqa/flake8
18 rev: 4.0.1
19 hooks:
20 - id: flake8
21 args: [--max-line-length=88]