https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: e6c52aca227696e24a2c079354ff2c64dfb32e09 authored by François Parmentier on 14 June 2017, 12:08:16 UTC
:bookmark: 7.15.1: Front-end improvements & Pagination fix
Tip revision: e6c52ac
pre-commit
#!/bin/sh
# Ensure all javascript files staged for commit pass standard code style
ROOT_DIR=$(git rev-parse --show-toplevel)
LINT="${ROOT_DIR}/node_modules/eslint/bin/eslint.js --ext .js --ext .jsx"

git diff --name-only --cached --relative | grep '\.jsx\?$' | xargs node $LINT
if [ $? -ne 0 ]; then exit 1; fi
back to top