9 lines
360 B
Bash
Executable File
9 lines
360 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$0")/common.sh"
|
|
[ "$MP_GIT_HOOKS_ENABLE" != "true" ] && exit 0
|
|
|
|
npx lint-staged -c mailpoet/package.json --cwd mailpoet
|
|
npx lint-staged -c package.json
|
|
npx lint-staged -c packages/js/email-editor/package.json --cwd packages/js/email-editor
|
|
npx lint-staged -c packages/php/email-editor/.lintstagedrc.json --cwd packages/php/email-editor
|