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