bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
7143.1.2
by Jelmer Vernooij
Add flake8 configuration to monkey patch for lazy imports. |
1 |
[flake8]
|
2 |
# Ignore E402 ("module level import not at top of file"),
|
|
3 |
# because even with the lazy import plugin it still triggers
|
|
4 |
# for lazy_import statements before other imports.
|
|
7143.1.4
by Jelmer Vernooij
Ignore all existing flake8 errors. |
5 |
ignore = |
7183.2.1
by Martin
Fix E999 lint error for Python 2 flake8 |
6 |
D |
7 |
I |
|
7143.1.4
by Jelmer Vernooij
Ignore all existing flake8 errors. |
8 |
E123 |
9 |
E261 |
|
10 |
E265 |
|
11 |
E266 |
|
12 |
E301 |
|
13 |
E302 |
|
14 |
E303 |
|
15 |
E305 |
|
16 |
E306 |
|
17 |
E401 |
|
7143.11.3
by Jelmer Vernooij
Sort. |
18 |
E402 |
7143.1.4
by Jelmer Vernooij
Ignore all existing flake8 errors. |
19 |
E501 |
20 |
E502 |
|
21 |
E702 |
|
22 |
E704 |
|
23 |
E722 |
|
24 |
E731 |
|
25 |
E741 |
|
26 |
F401 |
|
27 |
F402 |
|
28 |
F403 |
|
29 |
F405 |
|
30 |
F811 |
|
7167.1.2
by Jelmer Vernooij
Add test_flake8. |
31 |
F812 |
7143.1.4
by Jelmer Vernooij
Ignore all existing flake8 errors. |
32 |
F821 |
33 |
F841 |
|
34 |
W503 |
|
35 |
W504 |
|
36 |
W605 |
|
7192.4.5
by Jelmer Vernooij
Fix flake8 errors. |
37 |
filename = *.py,brz |
7143.1.2
by Jelmer Vernooij
Add flake8 configuration to monkey patch for lazy imports. |
38 |
|
39 |
[flake8:local-plugins]
|
|
40 |
extension = |
|
41 |
MC1 = flake8_lazy_import:LazyImport |
|
42 |
paths = ./tools/ |