summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2024-04-02 10:55:50 +0200
committerLinus Färnstrand <linus@mullvad.net>2024-04-02 10:55:50 +0200
commit03be1ea82c036ac5fec780dcd6d55d19fcf6df0c (patch)
tree98484c2762b4b585e1c19e3f09be8b3cb898ecb6 /test
parentba779e988e7d48c5d7051e1eb59b77da195da1a6 (diff)
parentcca4bc321bea5bcd278f8c5f47a6edf385461854 (diff)
downloadmullvadvpn-03be1ea82c036ac5fec780dcd6d55d19fcf6df0c.tar.xz
mullvadvpn-03be1ea82c036ac5fec780dcd6d55d19fcf6df0c.zip
Merge branch 'forbid-unicode-idents-in-rust'
Diffstat (limited to 'test')
-rw-r--r--test/Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Cargo.toml b/test/Cargo.toml
index 4a3fe414ec..35c87980e9 100644
--- a/test/Cargo.toml
+++ b/test/Cargo.toml
@@ -15,7 +15,12 @@ members = [
"connection-checker",
]
+# Keep all lints in sync with `../Cargo.toml`
[workspace.lints.rust]
+# Security
+non_ascii_idents = "forbid"
+
+# Modern, easy to read style and opinionated best practices
rust_2018_idioms = "deny"
[workspace.lints.clippy]