repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git]
/
packages
/
styles
/
tasks
/
lint-svg.sh
blob
0973b9b3f1c8a1e7653cf675c46fa11227f3ca4a
1
#!/usr/bin/env bash
2
set -eo
pipefail
3
4
# Temporarily disable during turbo migration
5
exit
0
6
7
for
file
in
$
(
find
.
-type
f
-name
"*.svg"
-not -path
"./node_modules/*"
);
do
8
echo
"[LINT]:
$file
"
;
9
npx svgo
"
$file
"
-q
2
>&
1
-o
/
dev
/
null
;
10
done
;