olsonpm

Results 50 comments of olsonpm

Just in case it's not clear, [mdn defines descriptors](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineproperty#Description) as either being "data" or "accessor" descriptors. The current code assumes only the latter whereas both need to be accounted for....

this is one of the reasons davidtheclark added [searchPlaces](https://github.com/davidtheclark/cosmiconfig/blob/master/README.md#searchplaces). if you find it doesn't suit your needs then let me know.

> I'm making an assumption here, but I'm assuming that one of cosmiconfig's goals is to actually give end users more control over where their config files are located *below...

This is actually already doable via [loaders](https://github.com/davidtheclark/cosmiconfig#loaders). This functionality was recently added by davidtheclark in [this pull request](https://github.com/davidtheclark/cosmiconfig/pull/129). If anything about it is unclear please let me know and I'll...

I don't think we'll be adding more defaults. It's just too hard a line to draw on when to stop adding out-of-the-box supported languages and syntaxes - which is one...

Unfortunately the 'ini' format isn't supported out of the box. Instead we support `js`, `json`, and `yaml`. >By default, Cosmiconfig will start where you tell it to start and search...

I've been looking for this functionality in an express/redis lib and came across this. Any reason not to use the existing `no-cache` request header for this purpose ?

I was getting some odd behavior as well so I dug through the code. I deleted [this line](https://github.com/critiqjo/key-mon/blob/master/src/keymon/shaped_window.py#L72) And changed [this line](https://github.com/critiqjo/key-mon/blob/master/src/keymon/shaped_window.py#L93) from `True` to `False` (the source in the...

Wouldn't your solution mean that any package installed in the entire dependency tree which happens to depend on prettier will cause this flag to trip? It just seems like it...

but your team's linter dependency still expects consumers to be formatted by prettier, thus i still think it should declare prettier as a peer dependency. and I'd personally be less...