Adam Albrecht

Results 15 comments of Adam Albrecht

Oh yeah I guess I hadn't noticed that it doesn't actually return the unique matches. But since the code you wrote returns a different type of data structure (hash instead...

I would love to see this as well. I'm not 100% sure, but I think you'd need to create an app in the app store. I would be more than...

@mrap @dabbeg Thank you for those instructions - I would have never figured it out otherwise.

+1 Yeah when I enable this, I get `Illegal import declaration` errors anytime I use the new ES6 module syntax.

Yeah I discovered ESLint today and it works great.

First, I installed [eslint](https://github.com/eslint/eslint) and [babel-eslint](https://github.com/babel/babel-eslint). Then, in my vimrc, I added the following: `let g:syntastic_javascript_checkers = ['eslint']]` I'm not quite sure how to configure it globally (it's probably [here](http://eslint.org/docs/user-guide/configuring)...

Oh I forgot to mention one thing - you need to enable jsx and es6 under "settings". Here is my config so far: ``` json "eslintConfig": { "parser": "babel-eslint", "env":...

And I don't know much about the merits of JSHint vs ESLint, but yeah I think it could probably replace this project. It works great for me so far.

I also just discovered this to make it even more useful: https://github.com/yannickcr/eslint-plugin-react

@jhonnytuba Is something in your changes only compatible with angular 1.3 and not 1.2?