Skip to content
Snippets Groups Projects
Commit 02fa2486 authored by Corné Lukken's avatar Corné Lukken
Browse files

Match ruff rule expansion across Python templates

parent bc1fed8f
No related branches found
No related tags found
1 merge request!10Add pre commit improve tox setup
Pipeline #121717 passed
Pipeline: Python Binary Wheel Package

#121719

    Pipeline: Python Binary Wheel Package

    #121718

      ......@@ -63,6 +63,10 @@ exclude = [
      ]
      [tool.ruff.lint]
      # Expand basic rules with name and style checks roughly equivalent to flake8 + black + pylint
      # Some additional functional errors such as `await` on none async or wrong return types / args.
      # More info https://docs.astral.sh/ruff/rules/
      select = ["N", "A", "E", "F", "B", "W", "Q", "PL", "ASYNC", "S", "G", "RET", "ARG"]
      ignore = ["E203"]
      ......
      0% Loading or .
      You are about to add 0 people to the discussion. Proceed with caution.
      Please register or to comment