diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 000000000..84bae7b71 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,15 @@ +[flake8] +extend-ignore = + # F841: local variable `name` is assigned to but never used + # while useful as a warning while writing code, the workarounds to avoid + # getting this error is often worst than the original problem + F841 + + # E203: whitespace before ':' + # this rule contradicts black codestyle + E203 + +max-line-length = 110 + +[pycodestyle] +max-line-length = 110