vis-lint

vis plugin for linting code
git clone anongit@rnpnr.xyz:vis-lint.git
Log | Files | Refs | Feed | README | LICENSE

Commit: 70c71dfe0a85674fa9fd87cae1a65dc0f1ae84a3
Parent: 70f1b05252578ccae2f97723c878167ac261e1ac
Author: Randy Palamar
Date:   Sat,  4 Nov 2023 19:28:39 -0600

make logging example compatible with older lua

Diffstat:
MREADME.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -77,7 +77,7 @@ modified as follows: if level == lint.log.INFO then vis:info(str) else - local fp = io.open("log.txt", "a") + local fp = io.open("log.txt", "*a") fp:write(str .. "\n") fp:close() end