aboutsummaryrefslogtreecommitdiff
path: root/.luarc.json
diff options
context:
space:
mode:
Diffstat (limited to '.luarc.json')
-rw-r--r--.luarc.json31
1 files changed, 31 insertions, 0 deletions
diff --git a/.luarc.json b/.luarc.json
new file mode 100644
index 0000000000..5a014a26ea
--- /dev/null
+++ b/.luarc.json
@@ -0,0 +1,31 @@
+{
+ "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
+ "runtime": {
+ "version": "LuaJIT"
+ },
+ "workspace": {
+ "library": [
+ "runtime/lua",
+ "${3rd}/busted/library",
+ "${3rd}/luv/library"
+ ],
+ "ignoreDir": [
+ "test"
+ ],
+ "checkThirdParty": false
+ },
+ "diagnostics": {
+ "groupFileStatus": {
+ "strict": "Opened",
+ "strong": "Opened"
+ },
+ "groupSeverity": {
+ "strong": "Warning",
+ "strict": "Warning"
+ },
+ "unusedLocalExclude": [ "_*" ],
+ "disable": [
+ "luadoc-miss-see-name"
+ ]
+ }
+}