Added ruff

This commit is contained in:
fleaz 2023-07-19 22:56:35 +02:00
parent 3c5fc31778
commit 7c8d60e3e5
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
2 changed files with 8 additions and 2 deletions

View file

@ -38,3 +38,6 @@ known_third_party = []
[tool.black] [tool.black]
line-length = 120 line-length = 120
[tool.ruff]
ignore = ["E501"]

View file

@ -2,15 +2,18 @@
pkgs.mkShell { pkgs.mkShell {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
black
python3 python3
poetry
python3Packages.flake8 python3Packages.flake8
python3Packages.isort python3Packages.isort
python3Packages.pip python3Packages.pip
python3Packages.poetry
python3Packages.setuptools python3Packages.setuptools
# python3Packages.pygobject3 # python3Packages.pygobject3
# python3Packages.cairocffi # python3Packages.cairocffi
black
isort
ruff
]; ];
} }