Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2022-12-16 01:55:29 +0300
committerPhilipp Hörist <philipp@hoerist.com>2022-12-17 16:03:37 +0300
commite00c67e50df5fa2a7368bceb8b23379611c05c0b (patch)
tree47df563693f2595330819ca6d859dfcd8c275663 /pyproject.toml
parent2601e782f23219d21baac4c2751d81befc5a5c80 (diff)
ci: Update ruff config
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml7
1 files changed, 6 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 75d44b78b..2b02b10bc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -88,6 +88,7 @@ line-length = 80
select = [
"A", # flake8-builtins
# "ANN", # flake8-annotations
+ # "ARG", # flake8-unused-arguments
"B", # flake8-bugbear
"BLE", # flake8-blind-except
"C", # flake8-comprehensions
@@ -98,8 +99,10 @@ select = [
"F", # pyflakes
# "FBT", # flake8-boolean-trap
# "I", # flake8-tidy-imports, isort
+ "ICN", # flake8-import-conventions
"N", # pep8-naming
- "PGH", # pylint
+ # "PDV", # pandas-vet
+ "PGH", # pygrep-hooks
"PLC", # pylint
"PLE", # pylint
"PLR", # pylint
@@ -108,7 +111,9 @@ select = [
"RUF", # Ruff-specific rules
# "RET", # flake8-return
"S", # flake8-bandit
+ "SIM", # flake8-simplify
# "T", # flake8-debugger, flake8-print
+ # "TID", # flake8-tidy-imports
"UP", # pyupgrade
"W", # pycodestyle
"YTT", # flake8-2020