Skip to content

Instantly share code, notes, and snippets.

View nightcycle's full-sized avatar

Nightcycle nightcycle

View GitHub Profile
@nightcycle
nightcycle / ViewportModel.luau
Created September 1, 2023 13:20
A type safe version of EgoMoose's ViewportModel class
--!strict
--[[
MIT License
Copyright (c) 2021 EgoMoose + 2023 Nightcycle
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
@nightcycle
nightcycle / testEZ.d.lua
Last active September 2, 2023 21:17
luau-lsp type definition file for testEZ (.spec) scripts
export type Expectation = {
to: Expectation,
be: Expectation,
been: Expectation,
have: Expectation,
was: Expectation,
at: Expectation,
a: (typeName: string?) -> Expectation,
an: (typeName: string?) -> Expectation,
ok: () -> Expectation,
@nightcycle
nightcycle / remodel.d.lua
Created July 26, 2023 20:53
luau-lsp type file for remodel
--!nocheck
declare class RemodelInstance
Name: string
ClassName: string
Parent: RemodelInstance
function Destroy(self): ()
function Clone(self): RemodelInstance
function GetChildren(self): { RemodelInstance }
function GetDescendants(self): { RemodelInstance }
function FindFirstChild(self, name: string): RemodelInstance?
@nightcycle
nightcycle / luau.yml
Created July 26, 2023 20:49
selene luau yml file
# This is for general Luau functionality.
# Valid: math.sign(), bit32.countlz()
# Invalid (put in selene-lib/default_std/roblox_base.yml instead): CFrame.new(), Instance.new(), task.spawn()
---
base: lints/lua51
globals:
bit32.arshift:
args:
- type: number
- type: number
@nightcycle
nightcycle / lua51.yml
Last active July 26, 2023 20:45
assert ignoring lua51.yml
---
globals:
_G:
property: new-fields
_VERSION:
property: read-only
arg:
property: new-fields
assert:
args: