<State initialValue={…}>
{(value, setValue) ={
…
}}
</State>
<State initialValue={…}>
{(value, setValue) ={
…
}}
</State>
What do you mean about the repo being closed to new contributors? Anyone (except a few blocked for repeated spam) should be able to send a PR, merge rights are locked down.
What do you mean about the repo being closed to new contributors? Anyone (except a few blocked for repeated spam) should be able to send a PR, merge rights are locked down.
* translating ESLint’s ast into Babel rather than reparsing
* exploring native wrappers (that call into JS) so that developers can continue using faster native toolchains
* long-term finding a way to get a native build of the compiler. Hopefully w static Hermes
* translating ESLint’s ast into Babel rather than reparsing
* exploring native wrappers (that call into JS) so that developers can continue using faster native toolchains
* long-term finding a way to get a native build of the compiler. Hopefully w static Hermes
For context, the new lint rules all share the same static analysis. This means that enabling one rule runs the compiler. We cache the results for a file, and subsequent rules just grab their rule output from that cache (LRU to avoid leaking)
For context, the new lint rules all share the same static analysis. This means that enabling one rule runs the compiler. We cache the results for a file, and subsequent rules just grab their rule output from that cache (LRU to avoid leaking)