diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-11-23 12:58:47 +0100 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-11-24 16:47:20 +0100 |
commit | a2aacbfad56c21b259fd36487d4e579176ac8967 (patch) | |
tree | d4fdf3a510dcb34fd46f1d1a5fd11accb7ccea52 /ruff.toml | |
parent | integration-test-wrapper: Remove unneeded format strings (diff) | |
download | systemd-a2aacbfad56c21b259fd36487d4e579176ac8967.tar.xz systemd-a2aacbfad56c21b259fd36487d4e579176ac8967.zip |
Move mypy.ini and ruff.toml to top level
This allows reusing them for integration-test-wrapper.py as well.
Diffstat (limited to 'ruff.toml')
-rw-r--r-- | ruff.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ruff.toml b/ruff.toml new file mode 100644 index 0000000000..6c0ec6ceb8 --- /dev/null +++ b/ruff.toml @@ -0,0 +1,6 @@ +target-version = "py39" +line-length = 109 +lint.select = ["E", "F", "I", "UP"] + +[format] +quote-style = "single" |