-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pre-commit-config.yaml
44 lines (44 loc) · 1.29 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
default_stages: [commit]
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v1.21.0
hooks:
- id: pyupgrade
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.1.0
hooks:
- id: check-merge-conflict
- repo: https://github.com/psf/black
rev: 21.4b2
hooks:
- id: black
language_version: python3.6
- repo: local
hooks:
- id: add-py-license-header
name: add py license header
entry: python scripts/add_py_license_header.py docs/license-headers/license.py ./ ".*\.py$" ".*" 'Tencent is pleased to support'
language: system
types: [ python ]
- id: check-migrate
name: check migrate
entry: python scripts/check_migrate/check_migrate.py
language: system
types: [python]
- id: check-commit-message
name: Check commit message
entry: python scripts/check_commit_message.py
language: system
stages: [commit-msg]
- id: ip
name: Check ip
description: Check ip
entry: scripts/sensitive_info_check/ip.sh
language: script
exclude: |
(?x)(
^scripts/sensitive_info_check/|
tests/.*.py|
requirements.txt|
bin/prom-aggregation-gateway
)