From c9c95b13effa1840b921a0606936510d7eafa611 Mon Sep 17 00:00:00 2001 From: Andrea Censi Date: Tue, 22 Feb 2022 14:09:51 +0100 Subject: updates --- .pylintrc | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .pylintrc (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..5671bbf --- /dev/null +++ b/.pylintrc @@ -0,0 +1,6 @@ +[MASTER] +disable= + C0114, # missing-module-docstring + C0115, # missing-class-docstring + C0116, # missing-function-docstring + C0103, # pylint complains about the TypeVar names https://github.com/PyCQA/pylint/issues/3324 \ No newline at end of file -- cgit v1.2.1 From ded6a1bfc44269add5aa376760f8a209c8cd0c39 Mon Sep 17 00:00:00 2001 From: Andrea Censi Date: Tue, 22 Feb 2022 14:14:37 +0100 Subject: some excludes --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index 5671bbf..d13ca13 100644 --- a/.pylintrc +++ b/.pylintrc @@ -3,4 +3,5 @@ disable= C0114, # missing-module-docstring C0115, # missing-class-docstring C0116, # missing-function-docstring - C0103, # pylint complains about the TypeVar names https://github.com/PyCQA/pylint/issues/3324 \ No newline at end of file + C0103, # pylint complains about the TypeVar names https://github.com/PyCQA/pylint/issues/3324 + R0903, # too few public methods \ No newline at end of file -- cgit v1.2.1