I don't care about this style rule. I write a lot of long lines and I think they are visually fine.
11 lines
229 B
Bash
Executable File
11 lines
229 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ! which flake8 &>/dev/null; then
|
|
echo "Flake8 is required to lint this project"
|
|
exit 1
|
|
fi
|
|
|
|
flake8 \
|
|
--ignore=E501 \
|
|
--exclude=api-daemon/migrations/versions,api-daemon/provisioner/examples
|