From 9ff57492ba230f5b5f5b27678748cc95168cdf40 Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Wed, 15 Nov 2023 18:08:07 +0100 Subject: [PATCH] lint: set max-line-length=130 for pylint Many lines in existing code are longer than 100 chars and attempts to shorten them provoked by pylint usually result in less readable code. Closes: https://github.com/csutils/csmock/pull/140 --- .pylintrc | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .pylintrc diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..547a33d --- /dev/null +++ b/.pylintrc @@ -0,0 +1,4 @@ +[FORMAT] + +# increase threshold to eliminate C0301 warnings about lines exceeding 100 chars +max-line-length=130