Jesse

Results 38 issues of Jesse

Example: ```js if ((1) || (2) || (3) ) { echo 'foo'; } ``` The above is bad because visually it looks like we're still inside the if statement as...

Example: ```js let foo = (( 1+ 2) ) let bar = 3; ``` I would expect this to be: ```js let foo = (( 1+ 2) ) let bar...

This package handles multi-line method indent like this: ```js const foo = this.someMethod() .someOtherMethod(); ``` But it should handle it like this (or at least provide the option to handle...

Example: ```js if (1) { echo 'foo'; } ``` I expect this to indent as: ```js if (1) { echo 'foo'; } ``` It appears to handle the bracket inline...

Some of us don't like to keep our coins on exchanges as they have a history of being hacked. It would be cool to be able to track the balance/price...

enhancement

I've been looking today for a general purpose JS library that would allow me to: 1. Grab coin market price in USD (or any other currency) from various exchanges via...

enhancement

In case anyone is interested in generating a bom csv, here is a little diff to sort out the columns and such. I just copy and paste this code into...

Any interest in a Makefile based build system? The advantage would be the ability to not recompile/rebuild files that haven't changed. I think right now ./make_machine.py always rebuilds everything, and...

Same as https://github.com/enzymejs/enzyme/pull/2430 with TODO_17 tags removed. How working on this PR made me feel: ![derpy_dog](https://user-images.githubusercontent.com/1695880/129408102-641d89b2-6ba2-4ba5-a3b2-3aaeda4406bc.jpeg)

I've used other mocking libraries in the past with other languages. One of the features I really miss is the ability to have my mocking library make my test fail...