Add Travis CI and LuaCheck (#8)

Bu işleme şunda yer alıyor:
David Leal 2020-05-12 19:33:58 -05:00 işlemeyi yapan: GitHub
ebeveyn d9fecd3b16
işleme 4dc66c721c
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 4AEE18F83AFDEB23
5 değiştirilmiş dosya ile 28 ekleme ve 3 silme

15
.luacheckrc Normal dosya
Dosyayı Görüntüle

@ -0,0 +1,15 @@
unused_args = false
allow_defined_top = true
max_line_length = 999
globals ={
"minetest",
}
read_globals = {
string = {fields = {"split", "trim"}},
table = {fields = {"copy", "getn"}},
"mysql_base",
"core", "dump",
}

11
.travis.yml Normal dosya
Dosyayı Görüntüle

@ -0,0 +1,11 @@
language: generic
addons:
apt:
packages:
- luarocks
before_install:
- luarocks install --local luacheck
script:
- $HOME/.luarocks/bin/luacheck .
notifications:
email: false

Dosyayı Görüntüle

@ -1,4 +1,5 @@
# MySQL Authentication
[![Build Status](https://travis-ci.org/MinetestForFun/mysql_auth.svg)](https://travis-ci.org/MinetestForFun/mysql_auth)
Plug Minetest's auth mechanism into a MySQL database.

Dosyayı Görüntüle

@ -1,6 +1,4 @@
local modname = minetest.get_current_modname()
local modpath = minetest.get_modpath(modname)
local thismod = _G[modname]
function thismod.import_auth_txt()

Dosyayı Görüntüle

@ -1,5 +1,5 @@
local modname = minetest.get_current_modname()
local modpath = minetest.get_modpath(modname)
local modpath = minetest.get_modpath(modname)
local thismod = {
enabled = false