-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4727866
Showing
17 changed files
with
2,727 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*.sublime-workspace | ||
*.rbxl | ||
|
||
archive/*.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
stds.roblox = { | ||
globals = { | ||
"game", | ||
"workspace", | ||
"script", | ||
}, | ||
read_globals = { | ||
-- Extra functions | ||
"tick", "warn", "spawn", | ||
"wait", "settings", "typeof", | ||
"delay", "time", "version", | ||
|
||
-- Libraries | ||
"debug", | ||
|
||
-- Types | ||
"Enum", | ||
"Axes", "BrickColor", "CFrame", "Color3", "ColorSequence", | ||
"ColorSequenceKeypoint", "Faces","Instance","NumberRange", | ||
"NumberSequence", "NumberSequenceKeypoint", "PhysicalProperties", | ||
"Ray", "Rect", "Region3", "Region3int16", "TweenInfo", | ||
"UDim", "UDim2", | ||
"Vector2", "Vector2int16", "Vector3", "Vector3int16", | ||
} | ||
} | ||
|
||
stds.testez = { | ||
read_globals = { | ||
"describe", | ||
"it", "itFOCUS", "itSKIP", | ||
"FOCUS", "SKIP", "HACK_NO_XPCALL", | ||
"expect", | ||
} | ||
} | ||
|
||
stds.plugin = { | ||
read_globals = { | ||
"plugin", | ||
} | ||
} | ||
|
||
ignore = { | ||
"212", -- unused arguments | ||
"421", -- shadowing local variable | ||
"422", -- shadowing argument | ||
-- "431", -- shadowing upvalue | ||
-- "432", -- shadowing upvalue argument | ||
} | ||
|
||
std = "lua51+roblox" | ||
|
||
files["**/*.spec.lua"] = { | ||
std = "+testez", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
MIT License | ||
|
||
Copyright (c) 2014-2018 Quenty | ||
|
||
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 | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
||
|
||
'StringMatcher.lua' contains code with the following copyright: | ||
|
||
Copyright 2011-2012 Nils Nordman <nino at nordman.org> | ||
|
||
with the license being the same as the above. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"folders": | ||
[ | ||
{ | ||
"path": "." | ||
} | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
This is the source for the Roblox plugin "Quenty's Class Converter" | ||
|
||
https://www.roblox.com/library/906681627/Quentys-Class-Converter-API-based | ||
|
||
### Building | ||
This plugin is built with Rojo. | ||
|
||
Run `rojo serve` from the root directory and then sync using the Rojo plugin. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "ClassConverter", | ||
"servePort": 8000, | ||
"partitions": { | ||
"plugin": { | ||
"path": "src", | ||
"target": "StarterGui.QuentyClassConverter.Plugin" | ||
} | ||
} | ||
} |
Oops, something went wrong.