mirror of
https://github.com/chenasraf/nvim-treesitter.git
synced 2026-05-17 17:38:02 +00:00
11 lines
187 B
Bash
Executable File
11 lines
187 B
Bash
Executable File
#!/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 .
|