summaryrefslogtreecommitdiff
path: root/.luacheckrc
diff options
context:
space:
mode:
authorchaeing <[email protected]>2021-07-31 11:28:59 -0700
committerGitHub <[email protected]>2021-07-31 14:28:59 -0400
commit213e3961fa637e4dbe4ef1ea5fceadcb372e020e (patch)
treefb5f49fe23e03acef3509b0fe5c5cd906e5ca7aa /.luacheckrc
parent2badb25f361ddeae32fcd482384cccdab96f8e68 (diff)
[Feature] Rename lv-config.lua to config.lua (#1193)
* Rename example config files * Update user config path in installer * Update user config path with a variable * Update default user config file to config.lua * Add fallback to lv-config if config.lua not found * Add global variable USER_CONFIG_PATH
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
}