EwDev

Results 9 comments of EwDev

Should this work for pcall() aswell? I can't give an example why you would pcall a function that's always expected to return the same thing, but it would still be...

Not sure if it was clear but I meant to add this check for the feature added in this pull request https://github.com/centau/vide/pull/36 The reason I proposed this was because to...

Seems to have been introduced in [0.14.1](https://github.com/seaofvoices/darklua/releases/tag/v0.14.1), as in [0.14.0](https://github.com/seaofvoices/darklua/releases/tag/v0.14.0) this doesn't seem to be an issue. (Possibly #232 ?)

This Lua behavior isn't exclusive to numeric keys, this applies to any table key. ```luau print({ ["a"] = 1, ["a"] = 2 }) --> { ["a"] = 2 } --...

Bump this, would be amazing to have libraries that you can just access as globals without having to constantly import them! (Also great for compatbility libraries as op said.)

Perhaps this could have an option for code to run to import specific libraries? An example would be importing "task" as `require("@lune/task")` to reduce the overhead of creating a file...

I can't see a reason why you would want this, but it might be cool to atleast have an option for it to convert all number literals (so even hex...

This would also mean some numbers could take advantage of [compute_expression](https://darklua.com/docs/rules/compute_expression/).

Maybe "`remove_logging`"? Where the rule has different options to remove `print()` and `warn()` (both enabled by default). Should probably have an option like `preserve_arguments_side_effects` in [remove_debug_profiling](https://darklua.com/docs/rules/remove_debug_profiling/). Can't really see a...