forked from inveniosoftware/invenio-rdm-records
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-js-linter.sh
executable file
·32 lines (28 loc) · 946 Bytes
/
run-js-linter.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env bash
# -*- coding: utf-8 -*-
#
# Copyright (C) 2022 CERN.
#
# Invenio App RDM is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
# Usage:
# ./run-js-linter.sh [args]
# Arguments
# -i|--install: installs eslint-config-invenio
GREEN='\033[0;32m'
RED='\033[0;31m'
NC='\033[0m' # No Color
for arg in $@; do
case ${arg} in
-i|--install)
npm install --no-save --no-package-lock @inveniosoftware/eslint-config-invenio@^2.0.0;;
-f|--fix)
printf "${GREEN}Run eslint${NC}\n";
npx eslint -c invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/.eslintrc.yml invenio_rdm_records/**/*.js --fix;;
*)
printf "Argument ${RED}$arg${NC} not supported\n"
exit;;
esac
done
printf "${GREEN}Run eslint${NC}\n"
npx eslint -c invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/.eslintrc.yml invenio_rdm_records/**/*.js