Neur0mante

Results 10 comments of Neur0mante

Just change the compiler-cli in the dev dependencies inside the _package.json_ to something like: `"@angular/compiler-cli": "^2.1.0",` Also for some reason it wasnt happy until I made an _asset_ folder in...

I just noticed #22 , the new dependencies should fix the issues.

I'll break down the .eslintrc here Of these only mocha is actually necessary: "env": { "node": true, "es6": true, "mocha": true }, it's worth to point out that this doesn't...

Sorry I'm used to ctrl+enter to insert a new line from everywhere I wasn't actually done breaking it down

es6 is also needed, I'm testing without it and it's complaining about const, import etc...

nevermind. It was because I removed the extends="standard" from the .eslintrc

This should do ``` { "extends": "standard", "env": { "mocha": true }, "globals": { "tabulator": true, "Components": true }, "rules": { "array-bracket-spacing": [ "error", "always" ], "camelcase": "off", "no-unused-vars": "warn"...

Without the mocha env `describe` and `it` get flagged as global variables (which are forbidden in standard) it's worth to point out that this doesn't add support for chai, and...

That looks good, turning all those calls into actual functions makes more sense. With should it plugs in automatically with chai.should() right? It seems to be working. "no-unused-vars": "warn" was...

It should be fine now. The correction on the triple equals in the fetcher is fine right?