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.

16 lines
357 B
Bash

#!/bin/bash
#
# Copyright (C) 2018 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
eslint -c ~/tests/eslintrc.conf.js -f ~/tests/node_modules/eslint-detailed-reporter/lib/detailed-multi.js \
~/cvat/apps/**/static/**/js/*.js -o ./report.html
ret_code=$?
mkdir -p ~/media/eslint
mv -t ~/media/eslint main.js styles.css report.html
exit $ret_code