Commit 38cd9045 authored by Mattias Loverot's avatar Mattias Loverot
Browse files

Fixed ruff ci

parent 22065150
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ ruff:
  stage: lint
  image: registry.gitlab.com/pipeline-components/ruff:latest
  script:
    - ruff --ignore=E402,E731,F401,F821,F841 --line-length=128 --show-source .
    - ruff check --output-format=gitlab .

pytest:
  stage: test

pyproject.toml

0 → 100644
+12 −0
Original line number Diff line number Diff line
[tool.ruff]
line-length = 128


[tool.ruff.lint]
ignore = [
    "E402",
    "E731",
    "F401",
    "F821",
    "F841",
]