mirror of
https://github.com/zkitter/configs.git
synced 2026-01-08 21:17:59 -05:00
* chore: Update to zkitter style * Update postinstall scripts * Update package.json * Update package.json
9 lines
303 B
Bash
9 lines
303 B
Bash
#!/bin/bash
|
|
|
|
# see sharing eslint config & npm scoped modules https://eslint.org/docs/latest/developer-guide/shareable-configs#npm-scoped-modules
|
|
if [[ ! -f "$INIT_CWD/.eslintrc.yaml" ]];then
|
|
echo "extends: ['@zkitter']" > "$INIT_CWD/.eslintrc.yaml"
|
|
fi
|
|
|
|
cp -n .eslintignore "$INIT_CWD/.eslintignore"
|