You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
270 B
Bash

#!/bin/bash
eslint -c ~/tests/eslintrc.conf.js -f ~/tests/node_modules/eslint-detailed-reporter/lib/detailed-multi.js \
~/cvat/apps/**/js/*.js -o ./report.html
ret_code=$?
mkdir -p ~/media/eslint
mv -t ~/media/eslint main.js styles.css report.html
exit $ret_code