diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..0883c127 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.ruff] + +target-version = "py310" + +exclude = ["extensions"] + +ignore = [ + "E501", # Line too long + "E731", # Do not assign a `lambda` expression, use a `def` +] + + +[tool.ruff.per-file-ignores] +"webui.py" = ["E402"] # Module level import not at top of file |