.luarc.json 614 B

1234567891011121314151617181920212223242526272829
  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. "../build/usr/share/lua/5.1",
  10. "../build",
  11. "${3rd}/busted/library",
  12. "${3rd}/luassert/library",
  13. "${3rd}/luv/library"
  14. ],
  15. "checkThirdParty": "Disable"
  16. },
  17. "diagnostics": {
  18. "groupFileStatus": {
  19. "strict": "Opened",
  20. "strong": "Opened"
  21. },
  22. "groupSeverity": {
  23. "strong": "Warning",
  24. "strict": "Warning"
  25. },
  26. "unusedLocalExclude": [ "_*" ]
  27. }
  28. }