-
Notifications
You must be signed in to change notification settings - Fork 93
/
.pre-commit-config.yaml
52 lines (52 loc) · 1.51 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
46
47
48
49
50
51
52
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-ast
- id: check-toml
- id: check-json
- id: check-xml
- id: check-merge-conflict # Check for files that contain merge conflict strings
# - id: fix-encoding-pragma # Remove the coding pragma: # -*- coding: utf-8 -*-
# - id: mixed-line-ending # Replace or check mixed line ending
# args: ["--fix=lf"]
- id: check-added-large-files
exclude: dayu_widgets/static/
- repo: https://github.com/ambv/black
rev: 21.11b1
hooks:
- id: black
language: python
types: [python]
- repo: https://github.com/hadialqattan/pycln
rev: v1.1.0
hooks:
- id: pycln
args: [--config=pyproject.toml]
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
name: isort (python)
# - repo: https://gitlab.com/pycqa/flake8
# rev: 3.7.9
# hooks:
# - id: flake8
# - repo: local
# hooks:
# - id: pylint
# name: pylint
# entry: pylint
# language: system
# types: [python]
# args: ["--max-line-length=80", "--disable=E1101,R0912"]
- repo: https://github.com/commitizen-tools/commitizen
rev: v2.20.0
hooks:
- id: commitizen
stages: [commit-msg]