.luacheckrc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. stds.roblox = {
  2. globals = {
  3. "game",
  4. "workspace",
  5. "script",
  6. },
  7. read_globals = {
  8. -- Global objects
  9. "plugin",
  10. -- Global functions
  11. "spawn",
  12. "delay",
  13. "warn",
  14. "wait",
  15. "tick",
  16. "typeof",
  17. "settings",
  18. "UserSettings",
  19. -- Global Namespaces
  20. "Enum",
  21. "debug",
  22. math = {
  23. fields = {
  24. "clamp",
  25. "sign",
  26. "noise"
  27. }
  28. },
  29. debug = {
  30. fields = {
  31. "profilebegin",
  32. "profileend"
  33. }
  34. },
  35. -- Global types
  36. "Instance",
  37. "Vector2",
  38. "Vector3",
  39. "CFrame",
  40. "Region3",
  41. "Color3",
  42. "UDim",
  43. "UDim2",
  44. "BrickColor",
  45. "Rect",
  46. "TweenInfo",
  47. "NumberRange",
  48. "NumberSequence",
  49. "NumberSequenceKeypoint",
  50. "Random",
  51. "Ray",
  52. "ColorSequence",
  53. "ColorSequenceKeypoint",
  54. "PhysicalProperties",
  55. "NumberSequence",
  56. "NumberSequenceKeypoint"
  57. }
  58. }
  59. ignore = { "111", "113", "631" }
  60. std = "lua51+roblox"