added luacheck configuration

Daniel Pittman [08-26-18 - 02:01]
added luacheck configuration

This starts a luacheck configuration to make it easier to
spot broken or otherwise risky bits of code in real-time.
Filename
.luacheckrc
diff --git a/.luacheckrc b/.luacheckrc
new file mode 100644
index 0000000..9f04737
--- /dev/null
+++ b/.luacheckrc
@@ -0,0 +1,19 @@
+-- -*- lua -*-
+
+files[".luacheckrc"].ignore = {"212"}
+
+stds.eso = {
+  read_globals = {
+    HashString = {},
+    PlaySound = {},
+    d = {},
+    zo_strformat = {},
+    SOUNDS = {other_fields = true},
+  },
+}
+
+std = 'lua51+eso'
+
+new_globals = {
+  'SlippyCheezeReadItOnce',
+}