Skip to content

Instantly share code, notes, and snippets.

@chrisallenlane
Created September 22, 2020 22:14
Show Gist options
  • Save chrisallenlane/133ff01ce2834b8948893237fead96cd to your computer and use it in GitHub Desktop.
Save chrisallenlane/133ff01ce2834b8948893237fead96cd to your computer and use it in GitHub Desktop.
.luacheckrc file for Pico-8 development
-- A `.luacheckrc` file for Pico-8 development.
-- Pico-8: https://www.lexaloffle.com/pico-8.php
-- Luacheck: https://luacheck.readthedocs.io/en/stable/config.html
globals = {
"_draw",
"_init",
"_update",
"abs",
"add",
"all",
"assert",
"atan2",
"band",
"bnot",
"bor",
"btn",
"btnp",
"bxor",
"camera",
"cartdata",
"circ",
"circfill",
"clip",
"cls",
"cocreate",
"color",
"coresume",
"cos",
"costatus",
"cstore",
"cursor",
"del",
"dget",
"dset",
"extcmd",
"fget",
"fillp",
"flip",
"flr",
"foreach",
"fset",
"getmetatable",
"line",
"map",
"max",
"memcpy",
"memset",
"menuitem",
"mget",
"mid",
"min",
"mset",
"music",
"pairs",
"pal",
"palt",
"peek",
"pget",
"poke",
"print",
"printh",
"pset",
"rect",
"rectfill",
"reload",
"rnd",
"setmetatable",
"sfx",
"sget",
"sgn",
"shl",
"shr",
"sin",
"spr",
"sqrt",
"srand",
"sset",
"sspr",
"stat",
"stop",
"sub",
"time",
"tline",
"tonum",
"tostr",
"trace",
"type",
"yield",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment