mirror of
https://github.com/zkitter/configs.git
synced 2026-01-08 06:34:05 -05:00
13 lines
424 B
Bash
13 lines
424 B
Bash
#!/bin/bash
|
|
|
|
if [[ ! -f "$INIT_CWD/.prettierrc.yaml" ]];then
|
|
echo "'@r1oga/prettier-config'" > "$INIT_CWD/.prettierrc.yaml"
|
|
else
|
|
# shellcheck disable=SC2162
|
|
read -p "overwrite .prettierrc.yaml?(Yn) " overwrite
|
|
if [[ -z "$overwrite" || "$overwrite" -eq "Y" || "$overwrite" -eq "y" ]];then
|
|
echo "'@r1oga/prettier-config'" > "$INIT_CWD/.prettierrc.yaml"
|
|
fi
|
|
fi
|
|
|
|
cp -i .prettierignore "$INIT_CWD/.prettierignore" |