You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 22, 2019. It is now read-only.
I've added a .png file to my repo, for an architecture diagram.
Unfortunately the _verify_lintspaces target tries to run lintspaces on every git recorded file, including the PNG file, which obviously breaks the build.
lintspaces should only run on text files, or restrict to known extensions, rather than on the entire output of git ls-files -z $1 | tr '\0' '\n' | xargs -I {} find {} ! -type l
The text was updated successfully, but these errors were encountered:
hmm, i think the command to execute lintspaces is correct but instead we just need to tweak the .editorconfig file. Are you using the default .editorconfig file or you own version?
I've added a
.png
file to my repo, for an architecture diagram.Unfortunately the
_verify_lintspaces
target tries to runlintspaces
on every git recorded file, including the PNG file, which obviously breaks the build.lintspaces
should only run on text files, or restrict to known extensions, rather than on the entire output ofgit ls-files -z $1 | tr '\0' '\n' | xargs -I {} find {} ! -type l
The text was updated successfully, but these errors were encountered: