mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-19 03:33:30 -05:00
10 lines
231 B
Bash
10 lines
231 B
Bash
|
set -x
|
||
|
cp $HOME/.config/.eslintrc.json .
|
||
|
pkgs=("@stylistic/eslint-plugin" "@typescript-eslint/eslint-plugin")
|
||
|
if [[ -z $1 ]]; then
|
||
|
echo please specify npm, pnpm, or yarn
|
||
|
exit 1
|
||
|
fi
|
||
|
for i in "${pkgs[@]}"; do
|
||
|
`$1 i -D $i`
|
||
|
done
|