diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-03-03 07:13:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-03 07:13:03 -0500 |
commit | 7ae4f7236a0873e490c7f5dc5d69f3b922818cb4 (patch) | |
tree | 3eef00ad36d3be3bd1f4c4269cb1c2e432705cd2 /scripts-dev/lint.sh | |
parent | Experimental MSC3890 Implementation: Fix deleting account data when using an ... (diff) | |
download | synapse-7ae4f7236a0873e490c7f5dc5d69f3b922818cb4.tar.xz |
Configure ruff to automatically fix issues. (#15194)
Diffstat (limited to '')
-rwxr-xr-x | scripts-dev/lint.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts-dev/lint.sh b/scripts-dev/lint.sh index 392c509a8a..9e4ed3246e 100755 --- a/scripts-dev/lint.sh +++ b/scripts-dev/lint.sh @@ -112,7 +112,7 @@ python3 -m black "${files[@]}" # Catch any common programming mistakes in Python code. # --quiet suppresses the update check. -ruff --quiet "${files[@]}" +ruff --quiet --fix "${files[@]}" # Catch any common programming mistakes in Rust code. # |