summaryrefslogtreecommitdiff
path: root/.luacheckrc
diff options
context:
space:
mode:
authorchristianchiarulli <[email protected]>2021-08-11 16:33:41 -0400
committerchristianchiarulli <[email protected]>2021-08-11 16:33:41 -0400
commit83013c0d4f1467f546c38719c61909decfcb8151 (patch)
tree143773ea73c64d953db699e6e621926e44653fc2 /.luacheckrc
parentf6407e0bdb9c2875bc8f186929ce183af391b2a9 (diff)
parent5a7630cac761e91335d2f25cb07a81271569c791 (diff)
Merge branch 'rolling' of github.com:ChristianChiarulli/LunarVim
Diffstat (limited to '.luacheckrc')
-rw-r--r--.luacheckrc38
1 files changed, 19 insertions, 19 deletions
diff --git a/.luacheckrc b/.luacheckrc
index b55bbb23..a3875f91 100644
--- a/.luacheckrc
+++ b/.luacheckrc
@@ -1,31 +1,31 @@
-- vim: ft=lua tw=80
stds.nvim = {
- globals = {
- "lvim",
- vim = { fields = { "g" } },
- "CONFIG_PATH",
- "CACHE_PATH",
- "DATA_PATH",
- "TERMINAL",
- "USER",
+ globals = {
+ "lvim",
+ vim = { fields = { "g" } },
+ "CONFIG_PATH",
+ "CACHE_PATH",
+ "DATA_PATH",
+ "TERMINAL",
+ "USER",
"C",
"Config",
"WORKSPACE_PATH",
"JAVA_LS_EXECUTABLE",
"MUtils",
- os = {fields = {"capture"}}
- },
- read_globals = {
- "jit",
- "os",
- "vim",
- -- vim = { fields = { "cmd", "api", "fn", "o" } },
- },
+ "USER_CONFIG_PATH",
+ os = { fields = { "capture" } },
+ },
+ read_globals = {
+ "jit",
+ "os",
+ "vim",
+ -- vim = { fields = { "cmd", "api", "fn", "o" } },
+ },
}
std = "lua51+nvim"
-
-- Don't report unused self arguments of methods.
self = false
@@ -33,6 +33,6 @@ self = false
cache = true
ignore = {
- "631", -- max_line_length
- "212/_.*", -- unused argument, for vars with "_" prefix
+ "631", -- max_line_length
+ "212/_.*", -- unused argument, for vars with "_" prefix
}