2
2
max-line-length = 88
3
3
select =
4
4
# flake8 default
5
- C90, E, F, W,
6
- # docstring-convention=numpy
7
- D100, D101, D102, D103, D104, D105, D106,
8
- D200, D201, D202, D204, D205, D206, D207, D208,
9
- D209, D210, D211, D214, D215,
10
- D300, D301, D302,
11
- D400, D401, D403, D404, D405, D406, D407, D408,
12
- D409, D410, D411, D412, D414,
13
- # matplotlib-specific extra pydocstyle errors
14
- D213,
5
+ D, E, F, W,
15
6
ignore =
16
7
# flake8 default
17
8
E121,E123,E126,E226,E24,E704,W503,W504,
18
9
# Additional ignores:
19
10
E127, E131,
20
11
E266,
21
12
E305, E306,
22
- E722, E741,
13
+ E741,
23
14
F841,
24
- # Some new flake8 ignores:
25
- N801, N802, N803, N806, N812,
26
15
# pydocstyle
27
- D100, D101, D102, D103, D104, D105, D106, D107,
28
- D200, D202, D203, D204, D205, D207, D212 ,
16
+ D100, D101, D102, D103, D104, D105, D106,
17
+ D200, D202, D204, D205,
29
18
D301,
30
- D400, D401, D402, D403, D404, D413,
19
+ D400, D401, D403, D404
20
+ # ignored by pydocstyle numpy docstring convention
21
+ D107, D203, D212, D213, D402, D413, D415, D416, D417,
31
22
32
23
exclude =
33
24
.git
@@ -42,7 +33,6 @@ exclude =
42
33
per-file-ignores =
43
34
setup.py: E402
44
35
45
-
46
36
lib/matplotlib/__init__.py: E402, F401
47
37
lib/matplotlib/_animation_data.py: E501
48
38
lib/matplotlib/_api/__init__.py: F401
@@ -81,9 +71,6 @@ per-file-ignores =
81
71
tutorials/text/mathtext.py: E501
82
72
tutorials/text/text_intro.py: E402
83
73
tutorials/text/text_props.py: E501
84
- tutorials/text/usetex.py: E501
85
- tutorials/toolkits/axes_grid.py: E501
86
- tutorials/toolkits/axisartist.py: E501
87
74
88
75
examples/animation/frame_grabbing_sgskip.py: E402
89
76
examples/images_contours_and_fields/tricontour_demo.py: E201
@@ -93,7 +80,6 @@ per-file-ignores =
93
80
examples/misc/print_stdout_sgskip.py: E402
94
81
examples/misc/table_demo.py: E201
95
82
examples/style_sheets/bmh.py: E501
96
- examples/style_sheets/plot_solarizedlight2.py: E501
97
83
examples/subplots_axes_and_figures/demo_constrained_layout.py: E402
98
84
examples/text_labels_and_annotations/custom_legends.py: E402
99
85
examples/ticks/date_concise_formatter.py: E402
0 commit comments