mirror of https://github.com/astral-sh/ruff
22 lines
586 B
TOML
22 lines
586 B
TOML
[files]
|
|
# https://github.com/crate-ci/typos/issues/868
|
|
extend-exclude = ["crates/red_knot_module_resolver/vendor/**/*", "**/resources/**/*", "**/snapshots/**/*"]
|
|
|
|
[default.extend-words]
|
|
"arange" = "arange" # e.g. `numpy.arange`
|
|
hel = "hel"
|
|
whos = "whos"
|
|
spawnve = "spawnve"
|
|
ned = "ned"
|
|
pn = "pn" # `import panel as pd` is a thing
|
|
poit = "poit"
|
|
BA = "BA" # acronym for "Bad Allowed", used in testing.
|
|
jod = "jod" # e.g., `jod-thread`
|
|
|
|
[default]
|
|
extend-ignore-re = [
|
|
# Line ignore with trailing "spellchecker:disable-line"
|
|
"(?Rm)^.*#\\s*spellchecker:disable-line$",
|
|
"LICENSEs",
|
|
]
|