blob: e72c7ede3a7eff6b1427632f6d232ffc0a793da5 [file] [log] [blame]
Chase Qied017432018-12-14 16:56:20 +08001#!/bin/sh
2set -ex
3
4python3 validate.py \
5 -g \
6 -r build-error.txt \
7 -p E501 \
Chase Qi6b5b4652019-01-11 14:18:28 +08008 -s SC1091 SC2230
9
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.