6 lines
146 B
Bash
Executable file
6 lines
146 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd "$(dirname "$0")/.." || exit 1
|
|
|
|
find . -type f -name "*.yml" -not -path "./roles/*" -print0 | \
|
|
xargs -0 -t -n 1 yamllint -s --
|