|
@@ -5,9 +5,21 @@ ignore =
|
|
|
E402, # module level import not at top of file
|
|
|
E722, # do not use bare 'except'
|
|
|
E741, # ambiguous variable name 'l'
|
|
|
- F841, # local variable 'center' is assigned to but never used
|
|
|
E501, # line too long (161 > 150 characters)
|
|
|
|
|
|
+per-file-ignores =
|
|
|
+ # Many of these ignores can and should be removed and the problem fixed.
|
|
|
+ # F841 local variable is assigned to but never used
|
|
|
+ d.polar/d.polar.py: F841
|
|
|
+ r.in.wms/wms_gdal_drv.py: F841
|
|
|
+ r.in.wms/wms_cap_parsers.py: F841
|
|
|
+ i.band/i.band.py: F841
|
|
|
+ v.report/v.report.py: F841
|
|
|
+ db.out.ogr/db.out.ogr.py: F841
|
|
|
+ g.extension/g.extension.py: F841
|
|
|
+ v.unpack/v.unpack.py: F841
|
|
|
+ v.import/v.import.py: F841
|
|
|
+
|
|
|
max-line-length = 88
|
|
|
exclude =
|
|
|
.git,
|