* refactor(config): default icons to ascii Problem: default icons used unicode characters (○, ✓, ●, ▸, ·, ↺) which render poorly in some terminals and font configurations. Solution: replace defaults with ascii equivalents (-, x, !, >, ., ~). Users can still override to unicode or nerd font icons via config. * ci: ignore library type checking * ci: cleanup ci script
10 lines
357 B
Bash
Executable file
10 lines
357 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
nix develop --command stylua --check .
|
|
git ls-files '*.lua' | xargs nix develop --command selene --display-style quiet
|
|
nix develop --command prettier --check .
|
|
nix fmt
|
|
git diff --exit-code -- '*.nix'
|
|
nix develop --command lua-language-server --check lua --configpath "$(pwd)/.luarc.json" --checklevel=Warning
|
|
nix develop --command busted
|