diff options
author | Robert Speicher <robert@gitlab.com> | 2018-01-03 19:52:26 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2018-01-03 19:52:26 +0000 |
commit | c8ddf067edf38f9f0e9c6c9bd226513db90f283a (patch) | |
tree | 711f526a7f6d7537df0ced89cdbe08c068db8ff4 /scripts | |
parent | ea55445dad4e11a16ab6eec58c85198870bd1f40 (diff) | |
parent | 2abf63899d449c74090a4149f508a61e766d47ec (diff) | |
download | gitlab-ce-c8ddf067edf38f9f0e9c6c9bd226513db90f283a.tar.gz |
Merge branch 'pre-commit-prettier' into 'master'
Pre commit prettier
See merge request gitlab-org/gitlab-ce!16061
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/add-code-formatters | 18 | ||||
-rw-r--r-- | scripts/pre-commit | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/scripts/add-code-formatters b/scripts/add-code-formatters new file mode 100755 index 00000000000..56bb8754d80 --- /dev/null +++ b/scripts/add-code-formatters @@ -0,0 +1,18 @@ +#!/bin/sh + +# Check if file exists with -f. Check if in in the gdk rook directory. +if [ ! -f ../GDK_ROOT ]; then + echo "Please run script from gitlab (e.g. gitlab-development-kit/gitlab) root directory." + exit 1 +fi + +PRECOMMIT=$(git rev-parse --git-dir)/hooks/pre-commit + +# Check if symlink exists with -L. Check if script was already installed. +if [ -L $PRECOMMIT ]; then + echo "Pre-commit script already installed." + exit 1 +fi + +ln -s ./pre-commit $PRECOMMIT +echo "Pre-commit script installed successfully" diff --git a/scripts/pre-commit b/scripts/pre-commit new file mode 100644 index 00000000000..48935e90a87 --- /dev/null +++ b/scripts/pre-commit @@ -0,0 +1,18 @@ +#!/bin/sh + +# Check if file exists with -f. Check if in in the gdk rook directory. +if [ ! -f ../GDK_ROOT ]; then + echo "Please run pre-commit from gitlab (e.g. gitlab-development-kit/gitlab) root directory." + exit 1 +fi + +jsfiles=$(git diff --cached --name-only --diff-filter=ACM "*.js" | tr '\n' ' ') +[ -z "$jsfiles" ] && exit 0 + +# Prettify all staged .js files +echo "$jsfiles" | xargs ./node_modules/.bin/prettier --write + +# Add back the modified/prettified files to staging +echo "$jsfiles" | xargs git add + +exit 0 |