diff --git a/pylintrc b/pylintrc new file mode 100644 index 0000000..5f3bd50 --- /dev/null +++ b/pylintrc @@ -0,0 +1,10 @@ +[MASTER] +reports=no + +# Black needs to disable wrong-hanging-indent. + +disable= + bad-continuation, + duplicate-code, + locally-disabled, + unused-argument, \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..eca367a --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[flake8] +max-line-length = 88 + +[pydocstyle] +add-ignore = D202 \ No newline at end of file