about summary refs log tree commit diff
path: root/src/tools/rust-analyzer/xtask
diff options
context:
space:
mode:
authorLukas Wirth <lukastw97@gmail.com>2025-03-15 16:10:02 +0100
committerDavid Barsky <me@davidbarsky.com>2025-03-15 12:02:31 -0400
commit94e0b32258b024192f860709a3b64100eb05ba69 (patch)
tree4f53cca71cebe2251739cd11fb807f874e734273 /src/tools/rust-analyzer/xtask
parent1d4ab0cb95d08c22cf21d11adbb5224049b66576 (diff)
downloadrust-94e0b32258b024192f860709a3b64100eb05ba69.tar.gz
rust-94e0b32258b024192f860709a3b64100eb05ba69.zip
chore: Drop legacy salsa
Diffstat (limited to 'src/tools/rust-analyzer/xtask')
-rw-r--r--src/tools/rust-analyzer/xtask/src/tidy.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/rust-analyzer/xtask/src/tidy.rs b/src/tools/rust-analyzer/xtask/src/tidy.rs
index 0e4208e0967..59427d29992 100644
--- a/src/tools/rust-analyzer/xtask/src/tidy.rs
+++ b/src/tools/rust-analyzer/xtask/src/tidy.rs
@@ -135,7 +135,6 @@ Apache-2.0 OR MIT
 Apache-2.0 WITH LLVM-exception
 Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
 Apache-2.0/MIT
-BSD-2-Clause OR Apache-2.0 OR MIT
 CC0-1.0
 ISC
 MIT
@@ -223,7 +222,7 @@ struct TidyDocs {
 impl TidyDocs {
     fn visit(&mut self, path: &Path, text: &str) {
         // Tests and diagnostic fixes don't need module level comments.
-        if is_exclude_dir(path, &["tests", "test_data", "fixes", "grammar", "ra-salsa", "stdx"]) {
+        if is_exclude_dir(path, &["tests", "test_data", "fixes", "grammar", "stdx"]) {
             return;
         }