File tree 3 files changed +16
-3
lines changed
3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change
1
+ [default ]
2
+ extend-ignore-identifiers-re = [
3
+ " [a-f0-9]{7,}" ,
4
+ " [Ff][Oo][Oo]" ,
5
+ " [a-zA-Z0-9]{20,}" ,
6
+ ]
7
+
1
8
[files ]
2
- extend-exclude = [" **/CHANGELOG.md" , " **/tests/fixtures/**" ]
9
+ extend-exclude = [
10
+ " **/CHANGELOG.md" ,
11
+ " **/tests/fixtures/**" ,
12
+ " gix-config/benches/large_config_file.rs" ,
13
+ " gix-glob/tests/wildmatch/mod.rs"
14
+ ]
15
+
3
16
4
17
[default .extend-words ]
5
18
rela = " rela"
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ impl PackLocation {
30
30
}
31
31
32
32
impl Count {
33
- /// Create a new instance from the given `oid` and its corresponding git `obj`ect data .
33
+ /// Create a new instance from the given `oid` and its corresponding location .
34
34
pub fn from_data ( oid : impl Into < ObjectId > , location : Option < crate :: data:: entry:: Location > ) -> Self {
35
35
Count {
36
36
id : oid. into ( ) ,
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ impl output::Entry {
126
126
} )
127
127
}
128
128
129
- /// Create a new instance from the given `oid` and its corresponding git `obj`ect data .
129
+ /// Create a new instance from the given `oid` and its corresponding git object data `obj`.
130
130
pub fn from_data ( count : & output:: Count , obj : & gix_object:: Data < ' _ > ) -> Result < Self , Error > {
131
131
Ok ( output:: Entry {
132
132
id : count. id . to_owned ( ) ,
You can’t perform that action at this time.
0 commit comments