12 lines
201 B
Bash
12 lines
201 B
Bash
#!/bin/sh
|
|
# Husky pre-commit hook: run lint-staged
|
|
# Generated by automation
|
|
|
|
npx --no-install lint-staged
|
|
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
npm test
|
|
npx lint-staged
|
|
npx lint-staged
|