1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-11-12 19:33:00 +00:00

Bump illuaminate version

For now, we just perform the minimal number of changes to get this
working. We'll switch to a more strict bracket handling system in the
future.
This commit is contained in:
Jonathan Coates
2020-04-09 22:15:06 +01:00
parent 68762fe84c
commit 68e6bc464b
20 changed files with 34 additions and 34 deletions

View File

@@ -42,7 +42,7 @@ jobs:
- name: Lint Lua code
run: |
test -d bin || mkdir bin
test -f bin/illuaminate || wget -q -Obin/illuaminate https://squiddev.cc/illuaminate/bin/illuaminate
test -f bin/illuaminate || wget -q -Obin/illuaminate https://squiddev.cc/illuaminate/linux-x86-64/illuaminate
chmod +x bin/illuaminate
bin/illuaminate lint

View File

@@ -393,7 +393,7 @@ end
-- @treturn Doc The object formatted as a document.
-- @usage Display a table on the screen
-- local pretty = require "cc.pretty"
-- pretty.print(pretty.pretty({ 1, 2, 3 })
-- pretty.print(pretty.pretty({ 1, 2, 3 }))
local function pretty(obj)
return pretty_impl(obj, {})
end

View File

@@ -97,7 +97,7 @@ end
-- complete.build(
-- { complete.choice, { "get", "put" } },
-- complete.dir,
-- } complete.file, many = true }
-- { complete.file, many = true }
-- )
local function build(...)
local arguments = table.pack(...)