mirror of
https://github.com/modrinth/code.git
synced 2026-08-24 16:44:51 +00:00
* fix: stale function call set_webview_visible * fix: modpack export progress bar and add notification when done * remove: force_no_zip64 * feat: switch to zip crate * add typo exception * fix: remove unit test (dont do) --------- Signed-off-by: Truman Gao <106889354+tdgao@users.noreply.github.com> Co-authored-by: Calum H. (IMB11) <contact@cal.engineer>
31 lines
759 B
TOML
31 lines
759 B
TOML
[files]
|
|
extend-exclude = [
|
|
"**/src/locales/",
|
|
"apps/frontend/",
|
|
"patches/",
|
|
"packages/utils/",
|
|
"packages/ui/",
|
|
"packages/blog/",
|
|
# contains licenses like `CC-BY-ND-4.0`
|
|
"packages/moderation/src/data/stages/license.ts",
|
|
"packages/moderation/src/utils.ts",
|
|
# contains payment card IDs like `IY1VMST1MOXS` which are flagged
|
|
"apps/labrinth/src/queue/payouts/mod.rs",
|
|
# contains domain names with deliberate typos
|
|
"apps/labrinth/assets/disposable_email_blocklist.txt"
|
|
]
|
|
|
|
[default.extend-words]
|
|
# Terms Of Use in `tou-link`
|
|
tou = "tou"
|
|
# Google Ad Manager
|
|
gam = "gam"
|
|
# short for "constants"
|
|
consts = "consts"
|
|
# short for "Copy"
|
|
Cpy = "Cpy"
|
|
|
|
[default.extend-identifiers]
|
|
# Constant from the `zip` crate
|
|
ZIP64_BYTES_THR = "ZIP64_BYTES_THR"
|