8 lines
239 B
Bash
8 lines
239 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Ignore E006 -- line length greater than 80 char
|
||
|
|
||
|
ROOT=$(readlink -fn $(dirname $0)/.. )
|
||
|
find $ROOT -not -wholename \*.tox/\* -and -not -wholename \*.test/\* \
|
||
|
-and -name \*.sh -print0 | xargs -0 bashate -v --ignore E006
|