Add missing workspace lints (#15237)

Marshall Bowers created

This PR adds the missing workspace lint configuration for the following
crates that were missing it:

- `google_ai`
- `open_ai`
- `tab_switcher`

Release Notes:

- N/A

Change summary

crates/google_ai/Cargo.toml    | 3 +++
crates/open_ai/Cargo.toml      | 3 +++
crates/tab_switcher/Cargo.toml | 3 +++
3 files changed, 9 insertions(+)

Detailed changes

crates/google_ai/Cargo.toml 🔗

@@ -5,6 +5,9 @@ edition = "2021"
 publish = false
 license = "GPL-3.0-or-later"
 
+[lints]
+workspace = true
+
 [lib]
 path = "src/google_ai.rs"
 

crates/open_ai/Cargo.toml 🔗

@@ -5,6 +5,9 @@ edition = "2021"
 publish = false
 license = "GPL-3.0-or-later"
 
+[lints]
+workspace = true
+
 [lib]
 path = "src/open_ai.rs"
 

crates/tab_switcher/Cargo.toml 🔗

@@ -5,6 +5,9 @@ edition = "2021"
 publish = false
 license = "GPL-3.0-or-later"
 
+[lints]
+workspace = true
+
 [lib]
 path = "src/tab_switcher.rs"
 doctest = false