mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
11 lines
241 B
Bash
Executable File
11 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# To enable this hook, symlink or copy this file to .git/hooks/pre-commit.
|
|
|
|
# Redirect output to stderr.
|
|
exec 1>&2
|
|
|
|
git diff --cached --name-only --diff-filter=ACMRTUB | \
|
|
grep '\.js$' | \
|
|
xargs ./node_modules/.bin/eslint --
|