You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# full list of numpydoc error codes: https://numpydoc.readthedocs.io/en/latest/validation.html
29
+
SKIP_ERRORS= [
30
+
"GL01", # parcels is fine with the summary line starting directly after `"""`, or on the next line.
31
+
"SA01", # Parcels doesn't require the "See also" section
32
+
"SA04", #
33
+
"ES01", # We don't require the extended summary for all docstrings
34
+
"EX01", # We don't require the "Examples" section for all docstrings
35
+
"SS06", # Not possible to make all summaries one line
36
+
#
37
+
# To be fixed up
38
+
"GL02", # Closin÷g quotes should be placed in the line after the last text in the docstring (do not close the quotes in the same line as the text, or leave a blank line between the last text and the quotes)
39
+
"GL03", # Double line break found; please use only one blank line to separate sections or paragraphs, and do not leave blank lines at the end of docstrings
40
+
"GL05", # Tabs found at the start of line "{line_with_tabs}", please use whitespace only
41
+
"GL06", # Found unknown section "{section}". Allowed sections are: {allowed_sections}
42
+
"GL07", # Sections are in the wrong order. Correct order is: {correct_sections}
43
+
"GL08", # The object does not have a docstring
44
+
"SS01", # No summary found (a short summary in a single line should be present at the beginning of the docstring)
45
+
"SS02", # Summary does not start with a capital letter
46
+
"SS03", # Summary does not end with a period
47
+
"SS04", # Summary contains heading whitespaces
48
+
"SS05", # Summary must start with infinitive verb, not third person (e.g. use "Generate" instead of "Generates")
49
+
"PR01", # Parameters {missing_params} not documented
0 commit comments