diff options
author | ubq323 <ubq323@ubq323.website> | 2023-06-19 05:30:45 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-06-19 05:30:45 +0100 |
commit | 16f350963e8b696690534cab2fd3b6eb681731c1 (patch) | |
tree | 8b221d3db7d5b97c4468c95d2d39e52d719505ee /check.sh | |
parent | f55c9f415a081a175e48b51db894f23e59ce47a2 (diff) |
fix shadowing issues reported by luacheck
Diffstat (limited to 'check.sh')
-rwxr-xr-x | check.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ #!/bin/sh luacheck . \ - --std=love+luajit --no-unused --no-redefined --ignore 611 \ + --std=love+luajit --no-unused --ignore 611 \ --max-line-length 70 \ - -q \ + -q --codes \ --exclude-files '**/dkjson.lua' --exclude-files '*/common/*' |