Sage Fennel
Sage Fennel
Currently we're using code like this: ```coffeescript `import Ember from 'ember'` `import {foo, bar} from 'baz'` class CoffeeScript whatever: => @something `export default Coffeescript` ``` But we plan to upgrade...
So yeah, the move to ES6 modules inside our CoffeeScript was already done. It never used CommonJS originally, it just used globals on the page. So we don't have any...
Ah nice, that looks like it'll work. I'll just do a search and replace on our repo and see how it goes. Thanks. Also, thanks for the cool project, I'm...
> Name rules sparsely - see #262 If we could get that in **big, bold, red letters** in the documentation, that'd be great. I just wasted the better part of...
Hello! I was working on this with @Schlickmann and wanted to add my thoughts about the fix. It's probably always the right thing to remove an event listener when a...
:+1: This would have been very helpful to me in the past.
Thank you @corsair! I'm a bit conflicted here because I generally prefer sourcing data from PokeAPI due to it being a JSON API and having Pokemon names in multiple languages......
Hi @hillin, This is actually worked as intended. Since Parsimmon has already finished parsing `1234`, the "cursor position" is on the `\n` ``` 1 2 3 4 \n ^^ ```...
I can see the argument both ways and I'm pretty sure I've used software that expects the end of the token to _exclusive_ rather than inclusive. ```js var index =...
Strictly speaking my suggestion still won't use your preferred logic for newline line/column numbering, but it will skip the issue as long as you don't actually need to include the...