File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " css-linter"
3
- version = " 1.8.1 "
3
+ version = " 1.8.2 "
4
4
edition = " 2021"
5
5
6
6
[dependencies ]
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ fn main() -> Result<()> {
156
156
for extra in classes_tsx {
157
157
if !minify {
158
158
println ! (
159
- "{}{}:{} {}Warn{}: Unused class `{}` found" ,
159
+ "{}{}:{} {}Warn{}: Unused class `{}` found. " ,
160
160
COLOR_YELLOW ,
161
161
extra. line_index + 1 ,
162
162
extra. column_index + 1 ,
@@ -166,7 +166,7 @@ fn main() -> Result<()> {
166
166
) ;
167
167
} else {
168
168
println ! (
169
- "{}:{}:{}:{}:Unused class `{}` found" ,
169
+ "{}:{}:{}:{}:\" {} \" : Unused class found. " ,
170
170
css_file,
171
171
extra. line_index + 1 ,
172
172
extra. column_index + 1 ,
@@ -212,7 +212,7 @@ fn main() -> Result<()> {
212
212
for extra in undefined. 1 {
213
213
if !minify {
214
214
println ! (
215
- "{}{}:{} {}Warn{}: Undefined class `{}` used" ,
215
+ "{}{}:{} {}Warn{}: Undefined class `{}` was used. " ,
216
216
COLOR_YELLOW ,
217
217
extra. line,
218
218
extra. column + 1 ,
@@ -222,7 +222,7 @@ fn main() -> Result<()> {
222
222
) ;
223
223
} else {
224
224
println ! (
225
- "{}:{}:{}:{}:Undefined class `{}` used" ,
225
+ "{}:{}:{}:{}:\" {} \" : Undefined class was used. " ,
226
226
undefined. 0 ,
227
227
extra. line,
228
228
extra. column + 1 ,
You can’t perform that action at this time.
0 commit comments