We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2416a0 commit 8230f11Copy full SHA for 8230f11
ci/code_checks.sh
@@ -152,6 +152,10 @@ if [[ -z "$CHECK" || "$CHECK" == "patterns" ]]; then
152
invgrep -R --include="*.py" --include="*.pyx" -E "class\s\S*\(object\):" pandas scripts
153
RET=$(($RET + $?)) ; echo $MSG "DONE"
154
155
+ MSG='Check for empty class parenteses' ; echo $MSG
156
+ invgrep -R --include="*.py" --include="*.pyx" -E "class\s\S*\(\):" pandas scripts
157
+ RET=$(($RET + $?)) ; echo $MSG "DONE"
158
+
159
MSG='Check for backticks incorrectly rendering because of missing spaces' ; echo $MSG
160
invgrep -R --include="*.rst" -E "[a-zA-Z0-9]\`\`?[a-zA-Z0-9]" doc/source/
161
0 commit comments