diff --git a/bin/projects.py b/bin/projects.py old mode 100644 new mode 100755 diff --git a/bin/update_how_it_works_image.py b/bin/update_how_it_works_image.py old mode 100644 new mode 100755 diff --git a/pyproject.toml b/pyproject.toml index d4224d4f..0234b137 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -120,26 +120,28 @@ messages_control.disable = [ [tool.ruff] select = [ - "E", "F", "W", # flake8 - "B", "B904", # flake8-bugbear - "I", # isort - "ARG", # flake8-unused-arguments - "C4", # flake8-comprehensions - "EM", # flake8-errmsg - "ICN", # flake8-import-conventions - "ISC", # flake8-implicit-str-concat - "PGH", # pygrep-hooks - "PIE", # flake8-pie - "PLC", "PLE", "PLW", # pylint - "PT", # flake8-pytest-style - "RET", # flake8-return - "RUF", # Ruff-specific - "SIM", # flake8-simplify - "UP", # pyupgrade - "YTT", # flake8-2020 + "E", "F", "W", # flake8 + "B", # flake8-bugbear + "I", # isort + "ARG", # flake8-unused-arguments + "C4", # flake8-comprehensions + "EM", # flake8-errmsg + "ICN", # flake8-import-conventions + "ISC", # flake8-implicit-str-concat + "PGH", # pygrep-hooks + "PIE", # flake8-pie + "PL", # pylint + "PT", # flake8-pytest-style + "RET", # flake8-return + "RUF", # Ruff-specific + "SIM", # flake8-simplify + "UP", # pyupgrade + "YTT", # flake8-2020 + "EXE", # flake8-executable ] extend-ignore = [ - "PLR2004", "E501", + "PLR", # Design related pylint codes + "E501", # Line too long "RET504", "RET505", "RET508", # else after control flow "PT004", # Rename suggested for returnless fixtures "PT007", # False positive (fixed upstream)