fix: cleanup typos with typos:off/on comments (#7301)

* fix: cleanup typos with typos:off/on comments

* tombi

* bump tombi version
This commit is contained in:
aecsocket
2026-08-25 15:18:27 +00:00
committed by GitHub
parent bb35950340
commit e33ef5f252
9 changed files with 28 additions and 65 deletions
+2 -9
View File
@@ -9,10 +9,7 @@ ariadne = { workspace = true }
async-minecraft-ping = { workspace = true, features = ["srv"] }
async-recursion = { workspace = true }
async-trait = { workspace = true }
async-tungstenite = { workspace = true, features = [
"tokio-runtime",
"tokio-rustls-webpki-roots"
] }
async-tungstenite = { workspace = true, features = ["tokio-runtime", "tokio-rustls-webpki-roots"] }
async-walkdir = { workspace = true }
async_zip = { workspace = true, features = [
"bzip2",
@@ -113,11 +110,7 @@ toml = { workspace = true }
tracing = { workspace = true }
tracing-error = { workspace = true }
tracing-subscriber = { workspace = true, features = ["chrono", "env-filter"] }
ts-rs = { workspace = true, features = [
"chrono-impl",
"no-serde-warnings",
"uuid-impl"
], optional = true }
ts-rs = { workspace = true, features = ["chrono-impl", "no-serde-warnings", "uuid-impl"], optional = true }
url = { workspace = true, features = ["serde"] }
urlencoding = { workspace = true }
uuid = { workspace = true, features = ["serde", "v4"] }
+2
View File
@@ -19,6 +19,7 @@ export function expandVariables(
}
export const licensesNotRequiringSource: string[] = [
// typos:off
'LicenseRef-All-Rights-Reserved',
'Apache-2.0',
'BSD-2-Clause',
@@ -33,6 +34,7 @@ export const licensesNotRequiringSource: string[] = [
'ISC',
'MIT',
'Zlib',
// typos:on
]
export const licensesRequiringSource: string[] = [
+1 -6
View File
@@ -10,12 +10,7 @@ repository = "https://github.com/jdrouet/sqlx-tracing"
license = "MIT"
# authors = ["Jérémie Drouet <jeremie.drouet@gmail.com>"] # deprecated field, Tombi warns
keywords = ["database", "observability", "opentelemetry", "sqlx", "tracing"]
categories = [
"asynchronous",
"database",
"development-tools::debugging",
"development-tools::profiling"
]
categories = ["asynchronous", "database", "development-tools::debugging", "development-tools::profiling"]
[dependencies]
derive_more = { workspace = true, features = ["deref", "deref_mut"] }
+1 -6
View File
@@ -15,12 +15,7 @@ futures = { workspace = true }
lz4_flex = { workspace = true }
postcard = { workspace = true }
prometheus = { workspace = true }
redis = { workspace = true, features = [
"ahash",
"cluster",
"cluster-async",
"tokio-comp"
] }
redis = { workspace = true, features = ["ahash", "cluster", "cluster-async", "tokio-comp"] }
serde = { workspace = true, features = ["derive"] }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["rt", "sync", "time"] }