mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
8 lines
158 B
Text
8 lines
158 B
Text
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
# Can be used as a pre-push hook
|
||
|
|
# Just symlink this file to .git/hooks/pre-push
|
||
|
|
|
||
|
|
echo "Running style check..."
|
||
|
|
./scripts/style-check.sh
|