-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flake8
48 lines (38 loc) · 1016 Bytes
/
.flake8
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
[flake8]
filename=
*.py,
exclude=
./.git,
./gde.egg-info,
./build,
./venv,
ignore=
# Block comment should start with '# '
# Not if it's a commented out line
E265,
# "Do not assign a labmda expression, use a def".
# T'is a silly rule.
E731,
# Ambiguous variable names
# It's absolutely fine to have i and I
E741,
# List comprehension redefines variable
# Re-using throw-away variables like `i`, `x`, etc. is a Good Idea
F812,
# Undefined name
# Good rule, but the check doesn't support dynamically created variables
F821,
# Blank line at end of file
# These can increase readability (in many editors)
W391,
# Binary operator on new line
# This is now advised in pep8
W503,
# Line break after binary operator
W504,
# Invalid escape sequence
# This is fine.
W605,
# Local variable assigned to but never used
# Good rule, but getting a false positive with flake 3.6.0
F841,