From 68bfa3212d5999da12c35fa5f6f4ed5bd03ad7dd Mon Sep 17 00:00:00 2001 From: Ankita Ghosh Date: Fri, 8 May 2026 21:24:08 +0530 Subject: [PATCH 1/4] fix: remove duplicate ruff entry from Code Linters section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ruff was listed twice — under both Code Linters and Code Formatters. Removed the duplicate from Code Linters since Ruff belongs More accurately, under Code Formatters. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bd17363315..1ba7a90f73 100644 --- a/README.md +++ b/README.md @@ -604,8 +604,7 @@ _Tools of static analysis, linters and code quality checkers. Also see [awesome- - [flake8](https://github.com/PyCQA/flake8) - A wrapper around `pycodestyle`, `pyflakes` and McCabe. - [awesome-flake8-extensions](https://github.com/DmytroLitvinov/awesome-flake8-extensions) - [pylint](https://github.com/pylint-dev/pylint) - A fully customizable source code analyzer. - - [ruff](https://github.com/astral-sh/ruff) - An extremely fast Python linter and code formatter. -- Code Formatters + - [black](https://github.com/psf/black) - The uncompromising Python code formatter. - [isort](https://github.com/PyCQA/isort) - A Python utility / library to sort imports. - [ruff](https://github.com/astral-sh/ruff) - An extremely fast Python linter and code formatter. @@ -1158,3 +1157,5 @@ Your contributions are always welcome! Please take a look at the [contribution g --- If you have any question about this opinionated list, do not hesitate to contact [@vinta](https://x.com/vinta) on X (Twitter). + + From a4990ddc06dfbcc2a0fc894d72ec5ffc002e3c90 Mon Sep 17 00:00:00 2001 From: Ankita Ghosh Date: Sat, 9 May 2026 13:48:39 +0530 Subject: [PATCH 2/4] fix: remove duplicate ruff entry from Code Linters section --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 1ba7a90f73..18538ae84b 100644 --- a/README.md +++ b/README.md @@ -607,7 +607,7 @@ _Tools of static analysis, linters and code quality checkers. Also see [awesome- - [black](https://github.com/psf/black) - The uncompromising Python code formatter. - [isort](https://github.com/PyCQA/isort) - A Python utility / library to sort imports. - - [ruff](https://github.com/astral-sh/ruff) - An extremely fast Python linter and code formatter. + - Refactoring - [rope](https://github.com/python-rope/rope) - Rope is a python refactoring library. - Type Checkers - [awesome-python-typing](https://github.com/typeddjango/awesome-python-typing) @@ -1157,5 +1157,3 @@ Your contributions are always welcome! Please take a look at the [contribution g --- If you have any question about this opinionated list, do not hesitate to contact [@vinta](https://x.com/vinta) on X (Twitter). - - From e75e91cb91fa0a1ab26f4b8885c48b134eeadd87 Mon Sep 17 00:00:00 2001 From: Ankita Ghosh Date: Mon, 11 May 2026 15:10:30 +0530 Subject: [PATCH 3/4] fix: restore Code Formatters subheading and ruff entry --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 18538ae84b..03aedb854c 100644 --- a/README.md +++ b/README.md @@ -603,10 +603,11 @@ _Tools of static analysis, linters and code quality checkers. Also see [awesome- - [bandit](https://github.com/PyCQA/bandit) - A tool designed to find common security issues in Python code. - [flake8](https://github.com/PyCQA/flake8) - A wrapper around `pycodestyle`, `pyflakes` and McCabe. - [awesome-flake8-extensions](https://github.com/DmytroLitvinov/awesome-flake8-extensions) - - [pylint](https://github.com/pylint-dev/pylint) - A fully customizable source code analyzer. - + - [pylint](https://github.com/pylint-dev/pylint) - A fully customizable source code analyzer. +- Code Formatters - [black](https://github.com/psf/black) - The uncompromising Python code formatter. - [isort](https://github.com/PyCQA/isort) - A Python utility / library to sort imports. + - [ruff](https://github.com/astral-sh/ruff) - An extremely fast Python linter and code formatter. - Refactoring - [rope](https://github.com/python-rope/rope) - Rope is a python refactoring library. From 52bbc91825335ec9df9ba31b4a525e04bf11bf53 Mon Sep 17 00:00:00 2001 From: Ankita Ghosh Date: Mon, 11 May 2026 15:28:23 +0530 Subject: [PATCH 4/4] fix: correct indentation for pylint, Code Formatters and Refactoring --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 03aedb854c..fe88871e59 100644 --- a/README.md +++ b/README.md @@ -603,12 +603,11 @@ _Tools of static analysis, linters and code quality checkers. Also see [awesome- - [bandit](https://github.com/PyCQA/bandit) - A tool designed to find common security issues in Python code. - [flake8](https://github.com/PyCQA/flake8) - A wrapper around `pycodestyle`, `pyflakes` and McCabe. - [awesome-flake8-extensions](https://github.com/DmytroLitvinov/awesome-flake8-extensions) - - [pylint](https://github.com/pylint-dev/pylint) - A fully customizable source code analyzer. + - [pylint](https://github.com/pylint-dev/pylint) - A fully customizable source code analyzer. - Code Formatters - [black](https://github.com/psf/black) - The uncompromising Python code formatter. - [isort](https://github.com/PyCQA/isort) - A Python utility / library to sort imports. - [ruff](https://github.com/astral-sh/ruff) - An extremely fast Python linter and code formatter. - - Refactoring - [rope](https://github.com/python-rope/rope) - Rope is a python refactoring library. - Type Checkers - [awesome-python-typing](https://github.com/typeddjango/awesome-python-typing)