We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e4424f commit a1bf64eCopy full SHA for a1bf64e
ci/code_checks.sh
@@ -190,6 +190,11 @@ if [[ -z "$CHECK" || "$CHECK" == "patterns" ]]; then
190
invgrep -R --include="*.rst" ".. ipython ::" doc/source
191
RET=$(($RET + $?)) ; echo $MSG "DONE"
192
193
+ # Check for blank lines after the class definition
194
+ MSG='Check for extra blank lines after the class definition' ; echo $MSG
195
+ invgrep -R --include="*.py" --include="*.pyx" -E 'class.*:\n\n( )+"""' doc/source/
196
+ RET=$(($RET + $?)) ; echo $MSG "DONE"
197
+
198
MSG='Check that no file in the repo contains trailing whitespaces' ; echo $MSG
199
set -o pipefail
200
if [[ "$AZURE" == "true" ]]; then
0 commit comments