diff options
| author | Sky Leite <sky@leite.dev> | 2023-02-03 23:50:25 -0300 |
|---|---|---|
| committer | Sky Leite <sky@leite.dev> | 2023-02-03 23:59:43 -0300 |
| commit | b6fce46081979c4ec8fdb833ec9583ac7a2f68cc (patch) | |
| tree | dfb253c1ea0433b2bd1e7ce2a06bffda3cdc613b /backend/pyproject.toml | |
| parent | e20fd5042c5ff198ca9d0871023d1685bab48875 (diff) | |
| download | decky-loader-b6fce46081979c4ec8fdb833ec9583ac7a2f68cc.tar.gz decky-loader-b6fce46081979c4ec8fdb833ec9583ac7a2f68cc.zip | |
Fix most formatting and linting errors
Diffstat (limited to 'backend/pyproject.toml')
| -rw-r--r-- | backend/pyproject.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/backend/pyproject.toml b/backend/pyproject.toml new file mode 100644 index 00000000..dd5a6c03 --- /dev/null +++ b/backend/pyproject.toml @@ -0,0 +1,11 @@ +[flake8] +max-line-length = 88 + +[tool.ruff] +ignore = [ + # Ignore line length check and let Black handle it + "E501" +] + +# Assume Python 3.10. +target-version = "py310" |
