forked from nautechsystems/nautilus_trader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
94 lines (88 loc) · 2.43 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.9.2
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 21.6b0
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: forbid-new-submodules
- id: fix-encoding-pragma
args: [--remove]
- id: end-of-file-fixer
types_or: [python, cython]
- id: trailing-whitespace
types_or: [python, cython]
- id: debug-statements
- id: detect-private-key
- id: check-builtin-literals
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-json
- id: check-merge-conflict
- id: check-symlinks
- id: check-toml
- id: check-xml
- id: check-yaml
- repo: https://github.com/codespell-project/codespell
rev: v2.1.0
hooks:
- id: codespell
description: Checks for common misspellings.
types_or: [python, cython, rst, markdown]
exclude: "nautilus_trader/adapters/betfair/parsing.py"
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910
hooks:
- id: mypy
args: [
--no-strict-optional,
--ignore-missing-imports,
--warn-no-return,
]
additional_dependencies: [
types-frozendict,
types-orjson,
types-pytz,
types-redis,
types-toml,
]
- repo: https://gitlab.com/PyCQA/flake8
rev: 3.9.2
hooks:
- id: flake8
name: flake8 (python)
additional_dependencies:
- flake8-bandit
- flake8-bugbear
- flake8-coding
# - flake8-comprehensions
- flake8-debugger
- flake8-deprecated
# - flake8-docstrings
- flake8-pep3101
- flake8-string-format
# - flake8-rst-docstrings
- flake8-typing-imports
# - pep8-naming
types: [python]
- id: flake8
name: flake8 (cython)
additional_dependencies:
- flake8-bandit
- flake8-bugbear
- flake8-coding
- flake8-comprehensions
- flake8-debugger
- flake8-deprecated
- flake8-docstrings
- flake8-pep3101
- flake8-string-format
- flake8-rst-docstrings
- flake8-typing-imports
- pep8-naming
types: [cython]