mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
11 lines
187 B
Plaintext
11 lines
187 B
Plaintext
|
#!/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 .
|