Nate Moore
Nate Moore
Is it possible to get some sort of spell check added? I usually use this extension: https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker
This adds a new `grid` set of options that can be used to render grid lines underneath the graph. The grid has main grid lines and inner grid lines. Snapping...
This can happen in some environments, for example if a `react-native` app happens to import something from `emoji-mart`.
It's common in CLIs to have a yes/no prompt with a default, i.e. `(Y/n)` implies that just pressing enter will default to "yes". It would be nice to have an...
If you put a unicode character somewhere in your script (i.e. `✨`) then the formatter will complain: ``` UnicodeEncodeError: 'charmap' codec can't encode character '\u2728' in position 3133: character maps...
I'd love to use proselint (especially with the VSCode extension) but one thing blocking me is that it will only ever print out the first occurrence of an error. For...
### Pre-flight checklist - [X] I have read the [contribution documentation](https://github.com/electron/forge/blob/main/CONTRIBUTING.md) for this project. - [X] I agree to follow the [code of conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project uses. - [X]...
### Pre-flight checklist - [X] I have read the [contribution documentation](https://github.com/electron/forge/blob/main/CONTRIBUTING.md) for this project. - [X] I agree to follow the [code of conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project uses. - [X]...
In our Next.js app, we're creating / closing an Ably realtime client inside of a `useEffect`. ```ts const createAblyRealtimeClient = (authParams?: Record) => { return new Realtime({ authUrl: AUTH_URL, authMethod:...