9 lines
129 B
Bash
Executable File
9 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
# Auto-format all files
|
|
yarn nx format:write
|
|
|
|
# Lint all staged files
|
|
yarn lint-staged
|