Revision 5ae4945a Makefile.am

b/Makefile.am
1308 1308
	HBINARY="./htools/hpc-htools" ./htools/offline-test.sh
1309 1309

  
1310 1310
# E111: indentation is not a multiple of four
1311
# E121: continuation line indentation is not a multiple of four
1312
#       (since our indent level is not 4)
1313
# E125: continuation line does not distinguish itself from next logical line
1314
#       (since our indent level is not 4)
1315
# E127: continuation line over-indented for visual indent
1316
#       (since our indent level is not 4)
1317
# note: do NOT add E128 here; it's a valid style error in most cases!
1318
# I've seen real errors, but also some cases were we indent wrongly
1319
# due to line length; try to rework the cases where it is triggered,
1320
# instead of silencing it
1311 1321
# E261: at least two spaces before inline comment
1312 1322
# E501: line too long (80 characters)
1313
PEP8_IGNORE = E111,E261,E501
1323
PEP8_IGNORE = E111,E121,E125,E127,E261,E501
1314 1324

  
1315 1325
# For excluding pep8 expects filenames only, not whole paths
1316 1326
PEP8_EXCLUDE = $(subst $(space),$(comma),$(strip $(notdir $(BUILT_PYTHON_SOURCES))))

Also available in: Unified diff