@@ -23,40 +23,28 @@ class StandardReportWithExclusions(pep8.StandardReport):
23
23
'*/matplotlib/bezier.py' ,
24
24
'*/matplotlib/cbook.py' ,
25
25
'*/matplotlib/collections.py' ,
26
- '*/matplotlib/colorbar.py' ,
27
26
'*/matplotlib/dates.py' ,
28
27
'*/matplotlib/docstring.py' ,
29
28
'*/matplotlib/dviread.py' ,
30
29
'*/matplotlib/finance.py' ,
31
30
'*/matplotlib/font_manager.py' ,
32
31
'*/matplotlib/fontconfig_pattern.py' ,
33
32
'*/matplotlib/gridspec.py' ,
34
- '*/matplotlib/hatch.py' ,
35
33
'*/matplotlib/image.py' ,
36
34
'*/matplotlib/legend.py' ,
37
35
'*/matplotlib/legend_handler.py' ,
38
36
'*/matplotlib/mathtext.py' ,
39
37
'*/matplotlib/mlab.py' ,
40
38
'*/matplotlib/nxutils.py' ,
41
- '*/matplotlib/offsetbox.py' ,
42
- '*/matplotlib/patches.py' ,
43
39
'*/matplotlib/path.py' ,
44
40
'*/matplotlib/patheffects.py' ,
45
41
'*/matplotlib/pylab.py' ,
46
42
'*/matplotlib/pyplot.py' ,
47
- '*/matplotlib/quiver.py' ,
48
43
'*/matplotlib/rcsetup.py' ,
49
- '*/matplotlib/sankey.py' ,
50
- '*/matplotlib/scale.py' ,
51
44
'*/matplotlib/stackplot.py' ,
52
- '*/matplotlib/streamplot.py' ,
53
- '*/matplotlib/table.py' ,
54
45
'*/matplotlib/texmanager.py' ,
55
46
'*/matplotlib/text.py' ,
56
- '*/matplotlib/textpath.py' ,
57
47
'*/matplotlib/ticker.py' ,
58
- '*/matplotlib/tight_bbox.py' ,
59
- '*/matplotlib/tight_layout.py' ,
60
48
'*/matplotlib/transforms.py' ,
61
49
'*/matplotlib/type1font.py' ,
62
50
'*/matplotlib/widgets.py' ,
@@ -72,7 +60,6 @@ class StandardReportWithExclusions(pep8.StandardReport):
72
60
'*/matplotlib/testing/jpl_units/UnitDblConverter.py' ,
73
61
'*/matplotlib/testing/jpl_units/UnitDblFormatter.py' ,
74
62
'*/matplotlib/testing/jpl_units/__init__.py' ,
75
- '*/matplotlib/tri/triangulation.py' ,
76
63
'*/matplotlib/tri/tricontour.py' ,
77
64
'*/matplotlib/tri/triinterpolate.py' ,
78
65
'*/matplotlib/tri/tripcolor.py' ,
@@ -147,8 +134,6 @@ class StandardReportWithExclusions(pep8.StandardReport):
147
134
'*/matplotlib/backends/windowing.py' ,
148
135
'*/matplotlib/backends/qt4_editor/figureoptions.py' ,
149
136
'*/matplotlib/backends/qt4_editor/formlayout.py' ,
150
- '*/matplotlib/delaunay/interpolate.py' ,
151
- '*/matplotlib/delaunay/testfuncs.py' ,
152
137
'*/matplotlib/sphinxext/__init__.py' ,
153
138
'*/matplotlib/sphinxext/ipython_console_highlighting.py' ,
154
139
'*/matplotlib/sphinxext/ipython_directive.py' ,
@@ -202,6 +187,11 @@ def test_pep8_conformance():
202
187
pep8style = pep8 .StyleGuide (quiet = False ,
203
188
reporter = StandardReportWithExclusions )
204
189
190
+ # Extend the number of PEP8 guidelines which are not checked.
191
+ pep8style .options .ignore = pep8style .options .ignore + ('E121' , 'E122' ,
192
+ 'E123' , 'E124' , 'E125' , 'E126' , 'E127' ,
193
+ 'E128' )
194
+
205
195
# Allow users to add their own exclude list.
206
196
extra_exclude_file = os .path .join (os .path .dirname (__file__ ),
207
197
'.pep8_test_exclude.txt' )
0 commit comments