.luacheckrc 637 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. -- vim: ft=lua tw=80
  2. stds.nvim = {
  3. globals = {
  4. "lvim",
  5. vim = { fields = { "g" } },
  6. "CONFIG_PATH",
  7. "CACHE_PATH",
  8. "DATA_PATH",
  9. "TERMINAL",
  10. "USER",
  11. "C",
  12. "Config",
  13. "WORKSPACE_PATH",
  14. "JAVA_LS_EXECUTABLE",
  15. "MUtils",
  16. os = {fields = {"capture"}}
  17. },
  18. read_globals = {
  19. "jit",
  20. "os",
  21. "vim",
  22. -- vim = { fields = { "cmd", "api", "fn", "o" } },
  23. },
  24. }
  25. std = "lua51+nvim"
  26. -- Don't report unused self arguments of methods.
  27. self = false
  28. -- Rerun tests only if their modification time changed.
  29. cache = true
  30. ignore = {
  31. "631", -- max_line_length
  32. "212/_.*", -- unused argument, for vars with "_" prefix
  33. }