Mike Erickson

Results 122 comments of Mike Erickson

So, if I want to install the latest npm 3.7, what is the "matching" node version? The way I see it, there is no way to get npm 3.7 within...

@ljharb ah so switch to version of node `(nvm use 5.5)` and then use `npm install -g [email protected]`

In addition to the LARVEL_START error (which occurs when Anbu is active), if I disable Anbu in app.php, I STILL receive the following issue in Codeception Functional Tests (13) --------------------------------------------------------------------------------------------------------------...

For those who are looking for Dayle to improve the themes, might want also have a look at other sites: http://www.phpstorm-themes.com As Dayle has stated, contributions are welcome (not the...

So, provided this is added, which testing framework should be used (assuming you are wanting PHPUnit)

@santiph At what capacity are you thinking Bard should contain ESLint support? Seeing as you can lint just about anything you want (and also exclude) not sure what you are...

Ah, this is because it is a global variable. You can also fix as ``` /*global error*/ ``` Or, in your package.json ``` "eslintConfig": { ... "globals": { "error": true...

@rglepper So in your case, if you apply ``` /* eslint no-undef: 0 */ ``` Then it would take care of your issue (no?) I hear what you are saying,...

You can again apply this in your package.json as follows ``` "eslintConfig": { ... "globals": { "error": true, "$controller": true, "$httpBackend": true, "$rootScope": true } }, ``` This way, you...

@santiph See previous message...