/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.cfg

  • Committer: Martin
  • Date: 2018-11-18 19:48:57 UTC
  • mto: This revision was merged to the branch mainline in revision 7205.
  • Revision ID: gzlist@googlemail.com-20181118194857-mqty4xka790jf934
Fix remaining whitespace lint in codebase

Enables rules W191, W291, W293, and W391 for flake8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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.
 
5
ignore =
 
6
   D
 
7
   I
 
8
   E123
 
9
   E241
 
10
   E251
 
11
   E261
 
12
   E265
 
13
   E266
 
14
   E301
 
15
   E302
 
16
   E303
 
17
   E305
 
18
   E306
 
19
   E401
 
20
   E402
 
21
   E501
 
22
   E502
 
23
   E702
 
24
   E704
 
25
   E722
 
26
   E731
 
27
   E741
 
28
   F401
 
29
   F402
 
30
   F403
 
31
   F405
 
32
   F811
 
33
   F812
 
34
   F821
 
35
   F841
 
36
   W503
 
37
   W504
 
38
   W601
 
39
   W605
 
40
filename = *.py,brz
 
41
 
 
42
[flake8:local-plugins]
 
43
extension =
 
44
        MC1 = flake8_lazy_import:LazyImport
 
45
paths = ./tools/