mirror of
https://github.com/harivansh-afk/forge.nvim.git
synced 2026-04-15 11:02:19 +00:00
10 lines
419 B
Bash
Executable file
10 lines
419 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
nix develop .#ci --command stylua --check .
|
|
git ls-files '*.lua' | xargs nix develop .#ci --command selene --display-style quiet
|
|
nix develop .#ci --command prettier --check .
|
|
nix fmt -- --ci
|
|
nix develop .#ci --command lua-language-server --check lua --configpath "$(pwd)/.luarc.json" --checklevel=Warning
|
|
nix develop .#ci --command vimdoc-language-server check doc/
|
|
nix develop .#ci --command busted
|