diff options
| author | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
|---|---|---|
| committer | Caleb Maclennan <caleb@alerque.com> | 2023-11-10 09:12:04 +0300 |
| commit | 5c4fc93d5f4137bf4c22ddf1a048c907a4a26727 (patch) | |
| tree | a9a68e1f6a9c3bfe2b64fa1c3a4098865b7d3b5d /.luacheckrc | |
| parent | ccef3bc4e2aa6ee5b997a80aabb58f4ff0b0e98f (diff) | |
| parent | 43a97b7f0053313b43906371dbdc226271e6c8ab (diff) | |
| download | luasocket-hjelmeland-patch-1.tar.gz luasocket-hjelmeland-patch-1.tar.bz2 luasocket-hjelmeland-patch-1.zip | |
Merge branch 'master' into hjelmeland-patch-1hjelmeland-patch-1
Diffstat (limited to '.luacheckrc')
| -rw-r--r-- | .luacheckrc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.luacheckrc b/.luacheckrc new file mode 100644 index 0000000..a3b4f63 --- /dev/null +++ b/.luacheckrc | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | unused_args = false | ||
| 2 | redefined = false | ||
| 3 | max_line_length = false | ||
| 4 | |||
| 5 | not_globals = { | ||
| 6 | "string.len", | ||
| 7 | "table.getn", | ||
| 8 | } | ||
| 9 | |||
| 10 | include_files = { | ||
| 11 | "**/*.lua", | ||
| 12 | "**/*.rockspec", | ||
| 13 | ".busted", | ||
| 14 | ".luacheckrc", | ||
| 15 | } | ||
| 16 | |||
| 17 | exclude_files = { | ||
| 18 | "test/*.lua", | ||
| 19 | "test/**/*.lua", | ||
| 20 | "samples/*.lua", | ||
| 21 | "samples/**/*.lua", | ||
| 22 | "gem/*.lua", | ||
| 23 | "gem/**/*.lua", | ||
| 24 | -- GH Actions Lua Environment | ||
| 25 | ".lua", | ||
| 26 | ".luarocks", | ||
| 27 | ".install", | ||
| 28 | } | ||
| 29 | |||
