mod_storage_sql: Silence some harmless luacheck warnings
authorKim Alvefur <zash@zash.se>
Tue, 9 Feb 2016 16:24:04 +0000 (17:24 +0100)
committerKim Alvefur <zash@zash.se>
Tue, 9 Feb 2016 16:24:04 +0000 (17:24 +0100)
plugins/mod_storage_sql.lua

index 5f25c5631c1213b92177e341c4c944c616c574fb..34fcaceed57245b96a625b2a23710ebbba5ab9d9 100644 (file)
@@ -1,4 +1,6 @@
 
+-- luacheck: ignore 212/self
+
 local json = require "util.json";
 local sql = require "util.sql";
 local xml_parse = require "util.xml".parse;
@@ -125,6 +127,7 @@ end
 
 --- Archive store API
 
+-- luacheck: ignore 512 431/user 431/store
 local map_store = {};
 map_store.__index = map_store;
 map_store.remove = {};