mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
10 lines
244 B
Bash
10 lines
244 B
Bash
![]() |
#!/bin/sh
|
||
|
cd ${0%/*}/..
|
||
|
if ! [ -x "$(command -v shellcheck)" ]; then
|
||
|
GLOBIGNORE="node_modules" shellcheck -e2012 **/*.sh
|
||
|
else
|
||
|
echo "Warning: shellcheck is not installed, skipping shell scripts"
|
||
|
fi
|
||
|
yarn run lint
|
||
|
"$(yarn bin)/eslint" --ext .ts
|