Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18329>
6 lines
157 B
Bash
Executable File
6 lines
157 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Run yamllint against all traces files.
|
|
find . -name '*traces*yml' -exec yamllint -d "{rules: {line-length: {max: 150}}}" {} \;
|