mirror of
https://github.com/modrinth/code.git
synced 2026-08-30 19:46:33 +00:00
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:
@@ -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"] }
|
||||
|
||||
@@ -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[] = [
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
@@ -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"] }
|
||||
|
||||
Reference in New Issue
Block a user