forked from geo-yuheng/Yuheng
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
53 lines (53 loc) · 1.47 KB
/
.pre-commit-config.yaml
File metadata and controls
53 lines (53 loc) · 1.47 KB
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
53
repos:
# local
- repo: local
hooks:
- id: pyright
name: pyright
entry: pyright
language: node
types: [python]
pass_filenames: false
additional_dependencies: ['pyright@1.1.226']
- id: isort # isort (must run before black or it will broken length of line)
name: isort
entry: isort .
language: system
types: [python]
- id: black #black
name: black
entry: black * -l 79
language: system
types: [python]
- id: check-requirements
name: check requirements files
language: system
entry: python -m scripts.check_requirements --compare
files: ^requirements.*.txt$
# # flake8
# - repo: https://github.com/PyCQA/flake8
# rev: 3.9.2
# hooks:
# - id: flake8
# # autoflake
# - repo: https://github.com/myint/autoflake
# rev: v1.4
# hooks:
# - id: autoflake
# args: ['--in-place', '--remove-all-unused-imports', '--remove-unused-variable', '--ignore-init-module-imports']
# # pre-commit-hooks
# - repo: https://github.com/pre-commit/pre-commit-hooks
# rev: v3.2.0
# hooks:
# - id: check-ast
# - id: check-byte-order-marker
# - id: check-case-conflict
# - id: check-docstring-first
# - id: check-executables-have-shebangs
# - id: check-json
# - id: check-yaml
# - id: debug-statements
# # - id: detect-private-key
# - id: end-of-file-fixer
# - id: trailing-whitespace
# - id: mixed-line-ending