@@ -32,10 +32,18 @@ exclude =
32
32
33
33
[flake8-rst]
34
34
bootstrap =
35
- import pandas as pd
36
35
import numpy as np
36
+ import pandas as pd
37
+ np # avoiding error when importing again numpy or pandas
38
+ pd # (in some cases we want to do it to show users)
37
39
ignore = E402, # module level import not at top of file
38
40
W503, # line break before binary operator
41
+ # Classes/functions in different blocks can generate those errors
42
+ E302, # expected 2 blank lines, found 0
43
+ E305, # expected 2 blank lines after class or function definition, found 0
44
+ # We use semicolon at the end to avoid displaying plot objects
45
+ E703, # statement ends with a semicolon
46
+
39
47
exclude =
40
48
doc/source/whatsnew/v0.7.0.rst
41
49
doc/source/whatsnew/v0.7.3.rst
@@ -69,23 +77,16 @@ exclude =
69
77
doc/source/whatsnew/v0.23.2.rst
70
78
doc/source/whatsnew/v0.24.0.rst
71
79
doc/source/10min.rst
72
- doc/source/advanced.rst
73
80
doc/source/basics.rst
74
- doc/source/categorical.rst
75
81
doc/source/contributing_docstring.rst
76
- doc/source/contributing.rst
77
82
doc/source/dsintro.rst
78
83
doc/source/enhancingperf.rst
79
- doc/source/extending.rst
80
84
doc/source/groupby.rst
81
85
doc/source/indexing.rst
82
86
doc/source/merging.rst
83
87
doc/source/missing_data.rst
84
88
doc/source/options.rst
85
89
doc/source/release.rst
86
- doc/source/comparison_with_sas.rst
87
- doc/source/comparison_with_sql.rst
88
- doc/source/comparison_with_stata.rst
89
90
doc/source/reshaping.rst
90
91
doc/source/visualization.rst
91
92
0 commit comments