silverwind
silverwind
Sounds useful, but no personal interest from me in implementing it. The API should have two return values: `{splits: [...networks], remainders: [...networks]}`. Also what may be useful is to also...
Just adding that yarn can also be [configured](https://github.com/silverwind/dotfiles/blob/2900c08a2146a170a39bb9cb1d293add995f0bf4/.yarnrc#L2) to not emit lockfiles on `install`, I hate them with passion 😉.
@naggie Which OS is this on? I couldn't reproduce on Windows right now, I just get timeouts.
Thanks. For now I'll just use multiple globs to target only the files that I care about. It's probably also possible to exclude paths with extended shell globs, but that's...
Nice work. I think a similar patch might be in order for the [regular ESLint plugin](https://github.com/roadhump/SublimeLinter-eslint/blob/master/linter.py), throught I'm not exactly sure how the configuration gets loaded there.
I guess ideally the values of `npm_config_noproxy` and `NO_PROXY` should be merged, if both are present. Or alternatively, drop `npm_config_noproxy`, as it's even less of a standard than `NO_PROXY`.
Uppercase variables can not be removed, it's very widespread in use. This sounds like a bug in Apache to me. It should not blindly set significant environment variables based on...
What would be needed would be the ability to have negative entries in NO_PROXY: ``` NO_PROXY='*,!.example.com' ``` It would mean "don't proxy anything except example.com or its subdomains". I don't...
Should probably switch the legacy `url` to use [URL](https://nodejs.org/api/url.html#url_the_whatwg_url_api), present as global since Node.js 10.0.0.