mirror of
https://gitee.com/bianbu-linux/mesa3d
synced 2025-04-24 06:08:00 -04:00
5 lines
164 B
Bash
Executable file
5 lines
164 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Run yamllint against all traces files.
|
|
find . -name '*traces*yml' -print0 | xargs -0 yamllint -d "{rules: {line-length: {max: 150}}}"
|