From 5a54f6b60b1dd691eaae4cc286d87ea9b7d4a271 Mon Sep 17 00:00:00 2001 From: Pascal Chorus Date: Mon, 22 Apr 2024 08:16:24 +0200 Subject: [PATCH] fixup! feat(action): add check for package versions --- .idea/watcherTasks.xml | 45 ------------------------------------------ ruff.toml | 32 ------------------------------ 2 files changed, 77 deletions(-) delete mode 100644 .idea/watcherTasks.xml delete mode 100644 ruff.toml diff --git a/.idea/watcherTasks.xml b/.idea/watcherTasks.xml deleted file mode 100644 index 2374ee6..0000000 --- a/.idea/watcherTasks.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/ruff.toml b/ruff.toml deleted file mode 100644 index a928f7c..0000000 --- a/ruff.toml +++ /dev/null @@ -1,32 +0,0 @@ -# https://docs.astral.sh/ruff/configuration/ -exclude = ["manage.py"] -force-exclude = true -line-length = 120 -target-version = "py312" - -[lint] -# Full list of available rules can be found on https://docs.astral.sh/ruff/rules/ -select = [ - "C4", # flake8-comprehensions - "COM", # flake8-commas - "DJ001", # flake8-django: Avoid using null=True on string-based fields such as - "DJ012", # flake8-django: Order of model's inner classes, methods, and fields - "DTZ", # flake8-datetimez - "E", # Error - "F", # Pyflakes - "I", # isort - "PTH", # flake8-use-pathlib - "RSE", # flake8-raise - "Q", # flake8-quotes - "UP009", # pyupgrade: UTF-8 encoding declaration is unnecessary - "W" # Warning -] -ignore = [] - -# Allow autofix for all enabled rules (when `--fix`) is provided. -fixable = ["ALL"] -unfixable = [] - -# Ignore line-too-long error in our generated codes -[lint.per-file-ignores] -"**/api/schema/*" = ["E501"]