d0b1d24be4
- dib-lint: make sure every element has a README.rst file - bashate: ignore E006 (line too long). Change-Id: I53a334b05a30e98f1df19504cee616e3d145e9e3
4 lines
202 B
Bash
Executable File
4 lines
202 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
find ./ -not -wholename \*.tox/\* -and \( -name \*.sh -or -wholename \*.d/\* -and -not -name \*.md -and -not -name \*.rst -and -not -name \*.py \) -print0 | xargs -0 bashate -v -i E006
|