-
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.
LUAFDN-280: inspect should print function names and use __tostring me…
…tamethod, if either are available (#63) * Add tests and implementation to inspect so it will emit function names (when possible) and use the __tostring metamethod if available on a table * Align .gitignore with other repos * Run selene on subset of the tree that is clean. Expand its use later. * Use the Quiet reporter so that debugging is easier. * Run stylua on subset of tree. Reformat new files. * Add Promise dev dependency so we can make sure the inspect output is reasonable.
- Loading branch information
RoFlection Bot
committed
Jul 17, 2021
1 parent
caeeb47
commit 10dcf89
Showing
11 changed files
with
10,562 additions
and
72 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 |
---|---|---|
@@ -1,9 +1,23 @@ | ||
# Rbxm model files | ||
/*.rbxmx | ||
|
||
# Dependencies | ||
Packages/* | ||
!Packages/.robloxrc | ||
|
||
# Rotriever lockfile | ||
rotriever.lock | ||
# Libraries don't commit lockfiles, apps do | ||
rotriever.lock | ||
|
||
# Dependencies | ||
Packages/* | ||
!Packages/.robloxrc | ||
!Packages/_Workspace/ | ||
Packages/_Workspace/* | ||
!Packages/_Workspace/.robloxrc | ||
|
||
# Rbxm model files | ||
**/*.rbx[lm]* | ||
|
||
# Misc OS files | ||
.DS_Store | ||
|
||
# Local IDE settings | ||
.vscode | ||
.idea/ | ||
|
||
# Code coverage data files | ||
**/luacov.* | ||
**/lcov*.info |
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
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
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
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
[tools] | ||
rotrieve = { source = "roblox/rotriever", version = "0.4.2" } | ||
rojo = { source = "rojo-rbx/rojo", version = "6.0.0-rc.1" } | ||
rojo = { source = "rojo-rbx/rojo", version = "6.2.0" } | ||
selene = { source = "Kampfkarren/selene", version = "0.13" } | ||
stylua = { source = "JohnnyMorganz/StyLua", version = "0.10" } |
Oops, something went wrong.