mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
10 lines
187 B
Bash
Executable file
10 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 .
|