Problem: reload_spec.lua called io.open() without nil checks, causing
need-check-nil warnings. Adding ${3rd}/busted and ${3rd}/luassert to
workspace.library caused lua-language-server 3.7.4 to run diagnostics
on its own bundled meta files, surfacing pre-existing cast-local-type
bugs in luassert's annotations that are not ours to fix.
Solution: use assert(io.open(...)) in reload_spec.lua to satisfy the
nil check. Remove busted/luassert library paths from .luarc.json since
they only benefit spec/ which is not type-checked in CI. Narrow the
lua-language-server check in scripts/ci.sh to lua/ to match CI.
10 lines
324 B
Bash
Executable file
10 lines
324 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/ --checklevel=Warning
|
|
nix develop --command busted
|