From b2c23d6ddcb581a1dfd44f3a695aab15b35c9b63 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Tue, 8 Aug 2023 04:47:02 +0300 Subject: Fix issues caught by linter * Add a .pylintrc to silence annoying messages * Fix imports * Add missing `parse_db_url` function * Add a new `gn_auth.auth.db.redis` module --- .pylintrc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .pylintrc (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..2753c79 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,10 @@ +[SIMILARITIES] + +ignore-imports=yes + +[MESSAGES CONTROL] + +disable= + fixme, + duplicate-code, + no-else-return \ No newline at end of file -- cgit v1.2.3