.luarc.json 616 B

1234567891011121314151617181920212223242526272829303132
  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. ],
  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. "disable": [
  28. "luadoc-miss-see-name"
  29. ]
  30. }
  31. }