# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1467998449 -7200
# Node ID 42d8955be784407d68169897c51f1bcc30d503e9
# Parent  ee878fa78b8b6a98d33031de1e99f27492404430
luacheckrc: Ignore assert helper functions used in tests/*

diff -r ee878fa78b8b -r 42d8955be784 .luacheckrc
--- a/.luacheckrc	Sat Jul 09 00:58:16 2016 +0800
+++ b/.luacheckrc	Fri Jul 08 19:20:49 2016 +0200
@@ -10,3 +10,14 @@
 files["plugins/"] = {
 	ignore = { "122/module" };
 }
+files["tests/"] = {
+	ignore = {
+		"113/assert_equal",
+		"113/assert_table",
+		"113/assert_function",
+		"113/assert_string",
+		"113/assert_boolean",
+		"113/assert_is",
+		"113/assert_is_not",
+	};
+}