stopdropandrew
stopdropandrew
For instance, If I have a `.styluaignore` file that looks like: `path/` This will check the file: `stylua -c path/to/file.lua` But this would not: `stylua -c .` As an alternative,...
This is a combination of https://github.com/jariz/vibrant.js/pull/42 and https://github.com/jariz/vibrant.js/pull/33
### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description When using `Json` wrapped types, I've noticed that VSCode (and mypy) treat the field as the...
Currently stylua removes many redundant parens, and in one specific case it's triggering a luau analysis warning. Ex: ```lua local _ = (not true) == true ``` Changes to: ```lua...
I recently upgraded an app to Ember 3.1.4 (from 2.1.8), we also switched to RFC 232 style tests as well (great improvement!). But, we noticed that our test suite run...
Union type `Status` with comments, inside table type `Foo` ```luau type Foo = { Status: "loading" -- loading | "error" -- error | "success" -- success } ``` reformats to...