mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 03:00:06 +08:00
11 lines
187 B
Bash
11 lines
187 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Can be used as a pre-push hook
|
|
# Just symlink this file to .git/hooks/pre-push
|
|
|
|
echo "Running linter..."
|
|
luacheck .
|
|
|
|
echo "Checking formatting..."
|
|
stylua --check .
|