Move Flake configuration into dedicated file
Avoid passing arguments in the script.
This commit is contained in:
parent
6b88fbd1e3
commit
5c620262e9
|
@ -0,0 +1,12 @@
|
||||||
|
[flake8]
|
||||||
|
# We ignore the following errors:
|
||||||
|
# * W503 (line break before binary operator): Black moves these to new lines
|
||||||
|
# * E501 (line too long): Long lines are a fact of life in comment blocks; Black handles active instances of this
|
||||||
|
# * E203 (whitespace before ':'): Black recommends this as disabled
|
||||||
|
ignore = W503, E501
|
||||||
|
extend-ignore = E203
|
||||||
|
# We exclude the Debian, migrations, and provisioner examples
|
||||||
|
exclude = debian,api-daemon/migrations/versions,api-daemon/provisioner/examples
|
||||||
|
# Set the max line length to 88 for Black
|
||||||
|
max-line-length = 88
|
||||||
|
|
8
lint
8
lint
|
@ -4,13 +4,7 @@ if ! which flake8 &>/dev/null; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# We ignore the following errors:
|
flake8
|
||||||
# * W503 (line break before binary operator): Black moves these to new lines
|
|
||||||
# * E501 (line too long): Long lines are a fact of life in comment blocks; Black handles active instances of this
|
|
||||||
flake8 \
|
|
||||||
--ignore=W503,E501 \
|
|
||||||
--exclude=debian,api-daemon/migrations/versions,api-daemon/provisioner/examples \
|
|
||||||
--max-line-length=88
|
|
||||||
ret=$?
|
ret=$?
|
||||||
if [[ $ret -eq 0 ]]; then
|
if [[ $ret -eq 0 ]]; then
|
||||||
echo "No linting issues found!"
|
echo "No linting issues found!"
|
||||||
|
|
Loading…
Reference in New Issue