10 lines
106 B
Bash
10 lines
106 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ -d "../bin" ]; then
|
||
|
cd "../"
|
||
|
fi
|
||
|
|
||
|
JSHINT=./node_modules/jshint/bin/hint
|
||
|
|
||
|
$JSHINT ./node/
|