.luarc.json 641 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "$schema": "https://raw.githubusercontent.com/LuaLS/vscode-lua/master/setting/schema.json",
  3. "runtime": {
  4. "version": "LuaJIT"
  5. },
  6. "workspace": {
  7. "library": [
  8. "runtime/lua",
  9. "${3rd}/busted/library",
  10. "${3rd}/luv/library"
  11. ],
  12. "ignoreDir": [
  13. "test",
  14. "_vim9script.lua"
  15. ],
  16. "checkThirdParty": "Disable"
  17. },
  18. "diagnostics": {
  19. "groupFileStatus": {
  20. "strict": "Opened",
  21. "strong": "Opened"
  22. },
  23. "groupSeverity": {
  24. "strong": "Warning",
  25. "strict": "Warning"
  26. },
  27. "unusedLocalExclude": [ "_*" ],
  28. "disable": [
  29. "luadoc-miss-see-name"
  30. ]
  31. }
  32. }