-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
69 lines (65 loc) · 1.84 KB
/
.flake8
File metadata and controls
69 lines (65 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[flake8]
max-line-length=120
extend-ignore =
# Google Python style is not RST until after processed by Napoleon
RST201, RST203, RST301, FNE005, TRY003, E203
per-file-ignores =
src/code_curator/leetcode/scenes/*:N801
src/code_curator/leetcode/problems/*:N801
tests/*:SCS108,N801
application-import-names = code_curator
import-order-style = smarkets
# use-class-attributes-order-strict-mode = true
class_attributes_order =
__new__,
__init__,
__post_init__
magic_method,
property_method,
static_method,
class_method,
method,
private_property_method,
private_static_method,
private_class_method,
private_method,
pytest-fixture-no-parentheses = true
pytest-parametrize-values-type = tuple
pytest-parametrize-values-row-type = tuple
jira-project-ids = CUR
allowed-todo-synonyms = TODO, FIXME
flake8-2020 = "1.8.0"
flake8-type-checking = "2.4.1"
flake8-dunder-all = "0.3.0"
flake8-encodings = "0.5.0"
flake8-requirements = "1.7.8"
flake8-bugbear = "23.7.10"
flake8-secure-coding-standard = "1.4.0"
flake8-useless-assert = "0.4.4"
flake8-class-attributes-order = "0.1.3"
flake8-clean-block = "0.1.2"
flake8-commas = "2.1.0"
flake8-comprehensions = "3.12.0"
flake8-datetimez = "20.10.0"
flake8-implicit-str-concat = "0.4.0"
flake8-literal = "1.3.0"
flake8-newspaper-style = "0.4.2"
flake8-picky-paranetheses = "0.5.0"
flake8-return = "1.2.0"
tryceratops = "2.3.2"
flake8-debugger = "4.1.2"
flake8-no-pep420 = "2.4.0"
flake8-use-pathlib = "0.3.0"
flake8-builtins = "2.1.0"
flake8-functions-names = "0.0.2"
pep8-naming = "0.13.3"
cohesion = "1.1.0"
flake8-expression-complexity = "0.0.11"
flake8-comments = "0.1.1"
flake8-eradicate = "1.4.0"
flake8-docstrings-complete = "1.1.0"
flake8-rst-docstrings = "0.3.0"
flake8-sphinx-links = "0.2.1"
flake8-import-order = "0.18.2"
flake8-aaa = "0.15.0"
flake8-pytest-style = "1.7.2"