-
Notifications
You must be signed in to change notification settings - Fork 13
/
.pre-commit-config.yaml
116 lines (108 loc) · 3.61 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
hooks:
- id: isort
args: [
--combine-as,
--line-length=100,
--ensure-newline-before-comments,
# --force-single-line-imports,
--single-line-exclusions=typing,
--trailing-comma,
--multi-line=3,
--lines-after-imports=2,
--use-parentheses,
]
- repo: https://github.com/psf/black
rev: 23.1.0
hooks:
- id: black
args: [
--line-length=120,
]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.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.2.2
hooks:
- id: codespell
description: Checks for common misspellings.
types_or: [python, cython, rst, markdown]
exclude: "trading/interactive_brokers/contracts.py,trading/adr/pricing/yahoo.py"
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.1.1
hooks:
- id: mypy
args: [
--no-strict-optional,
--ignore-missing-imports,
--warn-no-return,
]
additional_dependencies: [
types-orjson,
types-pytz,
types-redis,
types-toml,
]
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8
name: flake8 (python)
additional_dependencies:
- flake8-bandit
- flake8-bugbear
- flake8-coding
- flake8-debugger
- flake8-deprecated
- flake8-pep3101
- flake8-string-format
- flake8-typing-imports
types: [python]
args: [
--max-complexity=10,
--max-line-length=150,
--statistics,
--ignore=C101 E203 E252 E402 D100 D101 D102 S101 S403 W503,
--min-python-version=3.9.0,
]
- repo: https://github.com/kynan/nbstripout
rev: 0.6.1
hooks:
- id: nbstripout
# Flake8 ignore justifications
# ----------------------------
# C101: Coding magic comment not found
# D100: Missing docstring in public module (picks up entire test suite)
# D101: Missing docstring in public class (picks up entire test suite)
# D102: Missing docstring in public method (picks up entire test suite)
# E203: whitespace before ':' (conflicts with Black)
# E225: missing whitespace around operator (picks up cython casting)
# E226: missing whitespace around arithmetic operator (picks up C pointers)
# E227: missing whitespace around bitwise or shift operator (picks up C pointers)
# E252: spaces around default argument assignment (incorrect syntax)
# E402: module level import not at top of file (workaround to assist imports in examples)
# E999: SyntaxError: invalid syntax (cimport seen as invalid syntax)
# S101: Use of assert detected (use of assert normal for pytest)
# S403: Consider possible security implications associated with pickle module (pickle ok!)
# W503: in error will be amended by flake8 soon (https://www.flake8rules.com/rules/W503.html)