Files
configs/packages/eslint/postinstall.sh
r1oga 507e65c44a chore: Update to zkitter style (#1)
* chore: Update to zkitter style

* Update postinstall scripts

* Update package.json

* Update package.json
2022-12-20 13:18:05 +01:00

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"