Skip to content

Commit

Permalink
Implement all Pylint rule modules on ruff rules
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Ashiq committed Feb 27, 2025
1 parent 459404e commit 20022a4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,14 @@ lint.select = [
"C90", # mccabe
"PERF", # Perflint
"F", # Pyflakes
"PLC", # Pylint - convention
"PLE", # Pylint - error
"PLR", # Pylint - refactor
"PLW", # Pylint - warning
"N", # pep8-naming
"E", # pycodestyle - error
"W", # pycodestyle - warning
"PGH", # pygrep-hooks
"PL", # pylint
"UP", # pyupgrade
"FURB", # refurb
"TRY", # tryceratops
Expand Down

0 comments on commit 20022a4

Please sign in to comment.