Geoffrey Booth

Results 425 comments of Geoffrey Booth

I agree, it’s an annoying problem. It’s problematic to increase complexity when one of our prime selling points is simplicity. We could mimic [ES5’s `'use strict'`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode) and add in-file configuration,...

> I personally think we should never worry about such things in CS and generate let and const appropriately. I did make an experimental branch that simply always output `let`...

It sounds like you're basically asking for the inverse of object spread, which creates a _larger_ object (i.e. `obj3 = { obj1..., d:4 }`). I'm not sure there's a succinct...

> How about: https://lodash.com/docs/4.17.15#pick: ```js var object = { 'a': 1, 'b': '2', 'c': 3 }; _.pick(object, ['a', 'c']); // => { 'a': 1, 'c': 3 } ```

Sure, the more links the merrier. I think for the purposes of documentation, though, we need very simple examples to get people started. Think of the kind of developer who’s...

Sure, that would be a good example to provide. We should also have Webpack and Gulp examples for people who have more full-featured build chains (like preprocessing CSS as well,...

@DKhalil sure, I’d be happy to link to that. Do you mind posting an example repo to GitHub? Maybe just a hello-world that uses that stack.

After @helixbass released the Prettier and eslint support I was meaning to write a new section for the docs called Integrations, to be placed up high somewhere like near Usage,...

Are you using the `transpile` option? Does that make a difference?

Thank you @bcoe! I saw that PR against Node and I was tentatively hopeful that it might somehow help CoffeeScript 😄 Do you have a demo repo where you can...