Skip to content

Commit 762eec8

Browse files
Fix tidy errors
1 parent 62bfdcb commit 762eec8

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

REUSE.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ SPDX-FileCopyrightText = "2015 Anders Kaseorg <[email protected]>"
9292
SPDX-License-Identifier = "MIT"
9393

9494
[[annotations]]
95-
path = "src/librustdoc/html/static/fonts/FiraSans**"
95+
path = "src/librustdoc/html/static/fonts/Fira**"
9696
precedence = "override"
9797
SPDX-FileCopyrightText = ["2014, Mozilla Foundation", "2014, Telefonica S.A."]
9898
SPDX-License-Identifier = "OFL-1.1"

license-metadata.json

+18
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@
113113
{
114114
"directories": [],
115115
"files": [
116+
"FiraMono-Medium.woff2",
117+
"FiraMono-Regular.woff2",
116118
"FiraSans-LICENSE.txt",
117119
"FiraSans-Medium.woff2",
118120
"FiraSans-Regular.woff2"
@@ -150,6 +152,22 @@
150152
"name": "src/librustdoc/html/static/fonts",
151153
"type": "directory"
152154
},
155+
{
156+
"directories": [],
157+
"files": [
158+
"bar.rs",
159+
"bla.rs",
160+
"boo.rs",
161+
"foo.rs"
162+
],
163+
"license": {
164+
"copyright": [
165+
"NONE"
166+
],
167+
"spdx": "NONE"
168+
},
169+
"type": "group"
170+
},
153171
{
154172
"license": {
155173
"copyright": [

src/tools/tidy/src/bins.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ mod os_impl {
134134
&mut |entry| {
135135
let file = entry.path();
136136
let extension = file.extension();
137-
let scripts = ["py", "sh", "ps1"];
137+
let scripts = ["py", "sh", "ps1", "woff2"];
138138
if scripts.into_iter().any(|e| extension == Some(OsStr::new(e))) {
139139
return;
140140
}

0 commit comments

Comments
 (0)