run_jshint 926 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/env bash
  2. # You may redistribute this program and/or modify it under the terms of
  3. # the GNU General Public License as published by the Free Software Foundation,
  4. # either version 3 of the License, or (at your option) any later version.
  5. #
  6. # This program is distributed in the hope that it will be useful,
  7. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. # GNU General Public License for more details.
  10. #
  11. # You should have received a copy of the GNU General Public License
  12. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. main()
  14. {
  15. origDir=`pwd`
  16. cd node_build
  17. echo "Installing JSHint"
  18. npm install jshint || return 1
  19. JSHINT="`pwd`/node_modules/jshint/bin/jshint"
  20. echo "Running JSHint"
  21. ${JSHINT} --reporter=JSHintReporter.js . || return 1
  22. cd $origDir
  23. return 0
  24. }
  25. main