-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
63 lines (58 loc) · 1.07 KB
/
tox.ini
File metadata and controls
63 lines (58 loc) · 1.07 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
[flake8]
# ignore = E265,E266,F403
# max-line-length = 100
max-line-length = 120
exclude =
*/migrations/*
ignore =
# Ignore flake8 errors that conflict with Black
# https://github.com/kaste/SublimeLinter-addon-black-for-flake/blob/139744f/plugin.py#L7
# We should occasionally check for updates to this file.
E111,
E117,
E121,
E122,
E123,
E124,
E125,
E126,
E128,
E129,
E201,
E202,
E203,
E221,
E222,
E225,
E226,
E227,
E231,
E241,
E251,
E261,
E262,
E265,
E271,
E272,
E302,
E303,
E306,
E502,
E701,
E702,
E703,
E704,
W291,
W292,
W293,
W391,
# W503 line break before binary operator
W503
per-file-ignores =
# Django urls files often end up with long lines. Let those slide.
urls.py:E501
# Fab files often have long command strings. Let those slide.
fabfile.py:E501
# Django settings files contain star imports. Let those slide.
flyingcracker/config/settings/*:F401,F403,F405
select = B,C,E,F,W,T4,B9