|
@@ -3,16 +3,16 @@ ignore =
|
|
E203, # whitespace before ':' (Black)
|
|
E203, # whitespace before ':' (Black)
|
|
W503, # line break before binary operator (Black)
|
|
W503, # line break before binary operator (Black)
|
|
E722, # do not use bare 'except'
|
|
E722, # do not use bare 'except'
|
|
- E741, # ambiguous variable name 'l'
|
|
|
|
E501, # line too long (161 > 150 characters)
|
|
E501, # line too long (161 > 150 characters)
|
|
|
|
|
|
per-file-ignores =
|
|
per-file-ignores =
|
|
# Many of these ignores can and should be removed and the problem fixed.
|
|
# Many of these ignores can and should be removed and the problem fixed.
|
|
# F841 local variable is assigned to but never used
|
|
# F841 local variable is assigned to but never used
|
|
# E402 module level import not at top of file
|
|
# E402 module level import not at top of file
|
|
|
|
+ # E741 ambiguous variable name 'l' (needs longer name)
|
|
d.polar/d.polar.py: F841
|
|
d.polar/d.polar.py: F841
|
|
r.in.wms/wms_gdal_drv.py: F841
|
|
r.in.wms/wms_gdal_drv.py: F841
|
|
- r.in.wms/wms_cap_parsers.py: F841
|
|
|
|
|
|
+ r.in.wms/wms_cap_parsers.py: F841, E741
|
|
i.band/i.band.py: F841
|
|
i.band/i.band.py: F841
|
|
v.report/v.report.py: F841
|
|
v.report/v.report.py: F841
|
|
db.out.ogr/db.out.ogr.py: F841
|
|
db.out.ogr/db.out.ogr.py: F841
|
|
@@ -20,6 +20,8 @@ per-file-ignores =
|
|
v.unpack/v.unpack.py: F841
|
|
v.unpack/v.unpack.py: F841
|
|
v.import/v.import.py: F841
|
|
v.import/v.import.py: F841
|
|
r.in.wms/wms_drv.py: E402
|
|
r.in.wms/wms_drv.py: E402
|
|
|
|
+ db.univar/db.univar.py: E741
|
|
|
|
+ d.rast.leg/d.rast.leg.py: E741
|
|
|
|
|
|
max-line-length = 88
|
|
max-line-length = 88
|
|
exclude =
|
|
exclude =
|