@@ -93,17 +93,13 @@ sections = "FUTURE,STDLIB,THIRDPARTY,PYDATA,FIRSTPARTY,LOCALFOLDER"
93
93
force_sort_within_sections = true
94
94
95
95
[tool .ruff ]
96
- exclude = [
97
- " .git" ,
96
+ extend-exclude = [
98
97
" build" ,
99
98
" doc/gallery" ,
100
99
" doc/tutorials" ,
101
100
" tools/gh_api.py" ,
102
- " .tox" ,
103
- " .eggs" ,
104
101
]
105
102
line-length = 88
106
- target-version = " py311"
107
103
108
104
[tool .ruff .lint ]
109
105
ignore = [
@@ -129,9 +125,7 @@ ignore = [
129
125
" D404" ,
130
126
" D413" ,
131
127
" D415" ,
132
- " D416" ,
133
128
" D417" ,
134
- " E24" ,
135
129
" E266" ,
136
130
" E305" ,
137
131
" E306" ,
@@ -174,14 +168,11 @@ convention = "numpy"
174
168
"*.pyi" = [" E501" ]
175
169
"*.ipynb" = [" E402" ]
176
170
"doc/conf.py" = [" E402" ]
177
- "galleries/examples/animation/frame_grabbing_sgskip.py" = [" E402" ]
178
171
"galleries/examples/images_contours_and_fields/tricontour_demo.py" = [" E201" ]
179
172
"galleries/examples/images_contours_and_fields/tripcolor_demo.py" = [" E201" ]
180
173
"galleries/examples/images_contours_and_fields/triplot_demo.py" = [" E201" ]
181
174
"galleries/examples/lines_bars_and_markers/marker_reference.py" = [" E402" ]
182
- "galleries/examples/misc/print_stdout_sgskip.py" = [" E402" ]
183
175
"galleries/examples/misc/table_demo.py" = [" E201" ]
184
- "galleries/examples/style_sheets/bmh.py" = [" E501" ]
185
176
"galleries/examples/subplots_axes_and_figures/demo_constrained_layout.py" = [" E402" ]
186
177
"galleries/examples/text_labels_and_annotations/custom_legends.py" = [" E402" ]
187
178
"galleries/examples/ticks/date_concise_formatter.py" = [" E402" ]
@@ -210,11 +201,9 @@ convention = "numpy"
210
201
"lib/mpl_toolkits/axisartist/angle_helper.py" = [" E221" ]
211
202
"lib/mpl_toolkits/mplot3d/proj3d.py" = [" E201" ]
212
203
213
- "galleries/users_explain/artists/paths.py" = [" E402" ]
214
204
"galleries/users_explain/quick_start.py" = [" E402" ]
215
205
"galleries/users_explain/artists/patheffects_guide.py" = [" E402" ]
216
- "galleries/users_explain/artists/transforms_tutorial.py" = [" E402" , " E501" ]
217
- "galleries/users_explain/colors/colormaps.py" = [" E501" ]
206
+ "galleries/users_explain/artists/transforms_tutorial.py" = [" E402" ]
218
207
"galleries/users_explain/colors/colors.py" = [" E402" ]
219
208
"galleries/tutorials/artists.py" = [" E402" ]
220
209
"galleries/users_explain/axes/constrainedlayout_guide.py" = [" E402" ]
@@ -224,7 +213,6 @@ convention = "numpy"
224
213
"galleries/tutorials/images.py" = [" E501" ]
225
214
"galleries/tutorials/pyplot.py" = [" E402" , " E501" ]
226
215
"galleries/users_explain/text/annotations.py" = [" E402" , " E501" ]
227
- "galleries/users_explain/text/mathtext.py" = [" E501" ]
228
216
"galleries/users_explain/text/text_intro.py" = [" E402" ]
229
217
"galleries/users_explain/text/text_props.py" = [" E501" ]
230
218
0 commit comments