aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSantos Gallegos <stsewd@protonmail.com>2021-07-04 17:55:11 -0500
committerStephan Seitz <stephan.lauf@yahoo.de>2021-07-05 12:39:32 +0200
commit437e41e9fcf3866d766f953a45685ece5957de8d (patch)
tree4f8bb1beb59d5c24138361dbff5fe9a0dd2481ca /scripts
parentUpdate used_by for parent parsers (diff)
downloadnvim-treesitter-437e41e9fcf3866d766f953a45685ece5957de8d.tar
nvim-treesitter-437e41e9fcf3866d766f953a45685ece5957de8d.tar.gz
nvim-treesitter-437e41e9fcf3866d766f953a45685ece5957de8d.tar.bz2
nvim-treesitter-437e41e9fcf3866d766f953a45685ece5957de8d.tar.lz
nvim-treesitter-437e41e9fcf3866d766f953a45685ece5957de8d.tar.xz
nvim-treesitter-437e41e9fcf3866d766f953a45685ece5957de8d.tar.zst
nvim-treesitter-437e41e9fcf3866d766f953a45685ece5957de8d.zip
Luacheck: use config file to exclude files
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/pre-push7
-rwxr-xr-xscripts/style-check.sh4
2 files changed, 5 insertions, 6 deletions
diff --git a/scripts/pre-push b/scripts/pre-push
index 00d4c5071..8d425b3b6 100755
--- a/scripts/pre-push
+++ b/scripts/pre-push
@@ -3,5 +3,8 @@
# 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
+echo "Running linter..."
+luacheck .
+
+echo "Checking formatting..."
+stylua --check .
diff --git a/scripts/style-check.sh b/scripts/style-check.sh
deleted file mode 100755
index 8dfb53aa2..000000000
--- a/scripts/style-check.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/usr/bin/env bash
-
-# ignore indent test files
-luacheck `find -name "*.lua" -not -path "./tests/indent/lua/*"` --codes