0xCLARITY
0xCLARITY
@octogonz, should we close this since #236 got merged?
Nope. Decided that outlining functioned correctly, so it was good enough for my use case.
Looks like you need a pygments lexer that understands JSX, like this: https://github.com/fcurella/jsx-lexer/blob/master/jsx/lexer.py My first inclination would be to copy and paste that into the `/lexers` folder here and see...
Update: This does _not_ happen on my 2016 Macbook Pro running Mojave (OS X 10.14.6). Same deck, (mostly) same extensions. Code Highlighting has the expected monospaced font. I wonder if...
This looks like the same bug as: https://github.com/glutanimate/mini-format-pack/issues/9
I see. So the only way to do this is to write custom linting scripts in `lefthook.yml` that only run on `staged_files` or some custom selection of files? I was...
Pretty sure you're running into this: https://github.com/foundry-rs/foundry/issues/5199
My use case is this: ```sql CREATE UNIQUE INDEX "Subscriber_email_key" ON "Subscriber"("email") WHERE "deletedAt" IS NULL; ``` where I would want the model to look something like this: ``` model...
Might impact the gas savings a little - but you could imagine the Solady libraries having functions like: ```solidity function isFunctionXPayable() internal view virtual; ``` and then in your implementation...
So, it's not "failing" for me - I just think that all `abi.encode()` and `abi.encodePacked()` calls should be excluded from the rule. Here's an example from some code I'm writing:...