mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-11-21 14:23:32 +00:00
0aca442d15
The config can be made more precise so as to not accidentally ignore some issues due to case (in-)sensitivity and searching for substrings with `extend-words`. Additionally, we can check the configuration directories as well like `.github`. The usage of `implace_it` went away some time ago, but not all references were removed.
38 lines
807 B
TOML
38 lines
807 B
TOML
[files]
|
|
# Include .github, .cargo, etc.
|
|
ignore-hidden = false
|
|
extend-exclude = [
|
|
'/.git',
|
|
# spirv-asm isn't real source code
|
|
'*.spvasm',
|
|
'etc/big-picture.xml',
|
|
]
|
|
|
|
# Corrections take the form of a key/value pair. The key is the incorrect word
|
|
# and the value is the correct word. If the key and value are the same, the
|
|
# word is treated as always correct. If the value is an empty string, the word
|
|
# is treated as always incorrect.
|
|
|
|
[default.extend-words]
|
|
# Things that aren't typos
|
|
lod = "lod"
|
|
|
|
# Usernames
|
|
Healthire = "Healthire"
|
|
REASY = "REASY"
|
|
|
|
[type.rust.extend-identifiers]
|
|
ANDed = "ANDed"
|
|
D3DCOLORtoUBYTE4 = "D3DCOLORtoUBYTE4"
|
|
Derivate = "Derivate"
|
|
inout = "inout"
|
|
|
|
[type.wgsl]
|
|
extend-glob = ["*.wgsl"]
|
|
|
|
[type.wgsl.extend-identifiers]
|
|
pn = "pn"
|
|
|
|
[type.yaml.extend-words]
|
|
dota = "dota"
|