forked from rust-lang/rust-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5346002
commit 1880117
Showing
1 changed file
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
[default.extend-identifiers] | ||
AnserStyle = "AnserStyle" | ||
datas = "datas" | ||
impl_froms = "impl_froms" | ||
selfs = "selfs" | ||
[files] | ||
extend-exclude = [ | ||
"*.rast", | ||
"bench_data/", | ||
"crates/parser/test_data/lexer/err/", | ||
"crates/project-model/test_data/", | ||
] | ||
ignore-hidden = false | ||
|
||
[default] | ||
extend-ignore-re = [ | ||
# ignore string which contains $0, which is used widely in tests | ||
".*\\$0.*", | ||
# ignore generated content like `boxed....nner()`, `Defaul...efault` | ||
"\\w*\\.{3,4}\\w*", | ||
'"flate2"', | ||
"raison d'être", | ||
] | ||
|
||
[default.extend-words] | ||
anser = "anser" | ||
ba = "ba" | ||
fo = "fo" | ||
ket = "ket" | ||
makro = "makro" | ||
raison = "raison" | ||
trivias = "trivias" | ||
TOOD = "TOOD" | ||
|
||
[default] | ||
extend-ignore-re = [ | ||
# ignore string which contains $x (x is a num), which use widely in test | ||
".*\\$\\d.*", | ||
# ignore generated content like `boxed....nner()`, `Defaul...efault` | ||
"\\w*\\.{3,4}\\w*", | ||
] | ||
|
||
[files] | ||
extend-exclude = [ | ||
"*.json", | ||
"*.rast", | ||
"crates/parser/test_data/lexer/err/*", | ||
"bench_data/*", | ||
] | ||
[default.extend-identifiers] | ||
datas = "datas" | ||
impl_froms = "impl_froms" | ||
selfs = "selfs" |