Skip to content

Instantly share code, notes, and snippets.

@hail2u
Last active August 29, 2015 14:21
Show Gist options
  • Save hail2u/13fe31dec04ab8f49723 to your computer and use it in GitHub Desktop.
Save hail2u/13fe31dec04ab8f49723 to your computer and use it in GitHub Desktop.
.scss-lint.ymlをGitルートから拾ってscss-lintを実行するシェルスクリプト
#!/bin/sh
bin=${GEM_HOME}/bin/scss-lint
root=`git rev-parse --show-cdup`
conf=${root}.scss-lint.yml
if [ $? -eq 0 ] && [ -e $conf ]; then
${bin} -c ${conf} $*
else
${bin} $*
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment