6
mirror of https://github.com/AllSpiceIO/cofactr-cogs.git synced 2025-04-14 07:19:13 +00:00

Add pyproject.toml for ruff linting

This commit is contained in:
Jonathan Tran 2024-05-13 19:43:56 -04:00
parent d544b05d78
commit 9f33593f70
No known key found for this signature in database

8
pyproject.toml Normal file
View File

@ -0,0 +1,8 @@
[tool.ruff]
lint.ignore = [
"E501", # Line length.
"F405", # Unknown identifier usage due to import *.
]
line-length = 100
lint.select = ["E", "F", "RUF"]
exclude = []