mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
6 lines
No EOL
314 B
Bash
6 lines
No EOL
314 B
Bash
#!/bin/sh
|
|
npm i jshint -g
|
|
echo "jshint server.js client.js lib/cloudfunc.js"
|
|
jshint --config ./.jshintrc ./server.js ./client.js
|
|
echo "jshint ./lib/cloudfunc.js ./lib/server/minify.js ./lib/client/keyBinding.js"
|
|
jshint --config ./.jshintrc ./lib/cloudfunc.js ./lib/server/minify.js ./lib/client/keyBinding.js |