File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -149,6 +149,7 @@ jobs:
149149 git check-attr --stdin linguist-vendored | grep -Ev ': (set|true)$' | cut -d: -f1 |
150150 git check-attr --stdin ignore-lint | grep -Ev ': (set|true)$' | cut -d: -f1 |
151151 grep -Ev '^(vendor/|third_party/|.git)' |
152+ grep -v '\.svg$' |
152153 xargs misspell -i importas -error |
153154 reviewdog -efm="%f:%l:%c: %m" \
154155 -name="github.com/client9/misspell" \
@@ -179,6 +180,7 @@ jobs:
179180 git check-attr --stdin linguist-vendored | grep -Ev ': (set|true)$' | cut -d: -f1 |
180181 git check-attr --stdin ignore-lint | grep -Ev ': (set|true)$' | cut -d: -f1 |
181182 grep -Ev '^(vendor/|third_party/|.git)' |
183+ grep -v '\.svg$' |
182184 xargs grep -nE " +$" |
183185 reviewdog -efm="%f:%l:%m" \
184186 -name="trailing whitespace" \
@@ -211,7 +213,8 @@ jobs:
211213 git check-attr --stdin linguist-vendored | grep -Ev ': (set|true)$' | cut -d: -f1 |
212214 git check-attr --stdin ignore-lint | grep -Ev ': (set|true)$' | cut -d: -f1 |
213215 grep -Ev '^(vendor/|third_party/|.git)' |
214- grep -v '\.ai$')
216+ grep -v '\.ai$' |
217+ grep -v '\.svg$')
215218
216219 for x in $LINT_FILES; do
217220 # Based on https://stackoverflow.com/questions/34943632/linux-check-if-there-is-an-empty-line-at-the-end-of-a-file
You can’t perform that action at this time.
0 commit comments