Jonathan Beezley

Results 28 comments of Jonathan Beezley

Looks like we missed this when we renamed the command. It should be `eval "$(_GIRDER_CLIENT_COMPLETE=source girder-client)"`.

We use `babel-preset-env` which turns on and off transpilation features according to environment/config flags (see [browserslist](https://github.com/browserslist/browserslist)). We don't specify a config, so I think it just goes with the default...

That doesn't catch side-effects resulting from decorators though. For example, anything using `@validator` is registering symbols on a module level global in `setting_utilities.py`.

I don't know that I have followed this completely... if I understand correctly, the problem is that if you pin celery here, you can't override it downstream. When you try...

From a high level, this looks pretty nice. I think I want to try something non-trivial with it before final judgement though.

I spent some time looking into this for resonantgeo. Many different options exist, but styleguidist seemed the most promising as a vue native tool. I didn't use it at the...

I ended up fixing it in the constructor like this ```javascript class Test extends Model { constructor(attributes, ...args) { if (attributes && _.has(attributes, 'length')) { attributes.length_ = attributes.length; delete attributes.length;...