blob: f02de7d700b41a0e50c7617b8e828e52f87b290d [file] [log] [blame]
Chase Qied017432018-12-14 16:56:20 +08001#!/bin/sh
2set -ex
3
4python3 validate.py \
Chase Qied017432018-12-14 16:56:20 +08005 -r build-error.txt \
Milosz Wasilewskibe934292020-03-02 19:27:17 +00006 -p E501 W503 \
7 -s SC1091 SC2230 \
8 -v
Chase Qi6b5b4652019-01-11 14:18:28 +08009
10# pycodestyle checks skipped:
11# E510: line too long
12
13# Shellchecks skipped:
14# SC1091: not following
15
16# Reason: 'which' is widely used and supported. And 'command' applets isn't
17# available in busybox, refer to https://busybox.net/downloads/BusyBox.html
18# SC2230: which is non-standard. Use builtin 'command -v' instead.