-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
45 lines (40 loc) · 1.16 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-merge-conflict
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
- id: python-check-blanket-noqa
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
- repo: local
hooks:
- id: black
name: Black
description: Formats the python source code using black.
language: system
entry: poetry run task format
require_serial: true
pass_filenames: false
- id: flake8
name: Flake8
description: Lints this repository using flake8.
language: system
entry: poetry run python -m flake8
require_serial: true
pass_filenames: false
- id: generate_config_sub
name: Config stub
description: Generate the typing stub for the config module
language: system
entry: poetry run python tools/generate_config_stub.py
require_serial: true
pass_filenames: false