mirror of
https://github.com/astral-sh/ruff.git
synced 2025-12-23 09:19:58 +00:00
Some checks are pending
CI / pre-commit (push) Waiting to run
CI / benchmarks instrumented (ruff) (push) Blocked by required conditions
CI / Determine changes (push) Waiting to run
CI / cargo fmt (push) Waiting to run
CI / cargo clippy (push) Blocked by required conditions
CI / cargo test (linux) (push) Blocked by required conditions
CI / cargo test (linux, release) (push) Blocked by required conditions
CI / cargo test (${{ github.repository == 'astral-sh/ruff' && 'depot-windows-2022-16' || 'windows-latest' }}) (push) Blocked by required conditions
CI / cargo test (macos-latest) (push) Blocked by required conditions
CI / test scripts (push) Blocked by required conditions
CI / cargo test (wasm) (push) Blocked by required conditions
CI / cargo build (msrv) (push) Blocked by required conditions
CI / cargo fuzz build (push) Blocked by required conditions
CI / fuzz parser (push) Blocked by required conditions
CI / ecosystem (push) Blocked by required conditions
CI / Fuzz for new ty panics (push) Blocked by required conditions
CI / cargo shear (push) Blocked by required conditions
CI / ty completion evaluation (push) Blocked by required conditions
CI / python package (push) Waiting to run
CI / mkdocs (push) Waiting to run
CI / formatter instabilities and black similarity (push) Blocked by required conditions
CI / test ruff-lsp (push) Blocked by required conditions
CI / check playground (push) Blocked by required conditions
CI / benchmarks instrumented (ty) (push) Blocked by required conditions
CI / benchmarks walltime (medium|multithreaded) (push) Blocked by required conditions
CI / benchmarks walltime (small|large) (push) Blocked by required conditions
[ty Playground] Release / publish (push) Waiting to run
This is a common footgun, see the example in https://github.com/astral-sh/ruff/issues/13014#issuecomment-3411496519 Fixes #13014 , fixes #13031
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[files]
|
|
# https://github.com/crate-ci/typos/issues/868
|
|
extend-exclude = [
|
|
"crates/ty_vendored/vendor/**/*",
|
|
"**/resources/**/*",
|
|
"**/snapshots/**/*",
|
|
"crates/ruff_linter/src/rules/flake8_implicit_str_concat/rules/collection_literal.rs",
|
|
# Completion tests tend to have a lot of incomplete
|
|
# words naturally. It's annoying to have to make all
|
|
# of them actually words. So just ignore typos here.
|
|
"crates/ty_ide/src/completion.rs",
|
|
]
|
|
|
|
[default.extend-words]
|
|
"arange" = "arange" # e.g. `numpy.arange`
|
|
hel = "hel"
|
|
whos = "whos"
|
|
spawnve = "spawnve"
|
|
ned = "ned"
|
|
pn = "pn" # `import panel as pn` is a thing
|
|
poit = "poit"
|
|
BA = "BA" # acronym for "Bad Allowed", used in testing.
|
|
jod = "jod" # e.g., `jod-thread`
|
|
Numer = "Numer" # Library name 'NumerBlox' in "Who's Using Ruff?"
|
|
|
|
[default]
|
|
extend-ignore-re = [
|
|
# Line ignore with trailing "spellchecker:disable-line"
|
|
"(?Rm)^.*#\\s*spellchecker:disable-line$",
|
|
"LICENSEs",
|
|
# Various third party dependencies uses `typ` as struct field names (e.g., lsp_types::LogMessageParams)
|
|
"typ",
|
|
# TODO: Remove this once the `TYP` redirects are removed from `rule_redirects.rs`
|
|
"TYP",
|
|
"ntBre"
|
|
]
|
|
|
|
[default.extend-identifiers]
|
|
"FrIeNdLy" = "FrIeNdLy"
|