I recently pulled in the latest Laravel 5.3. In the gulp.js
file, there is the newer ES6 arrow function syntax:
elixir(mix => {
mix.sass('app.scss')
.webpack('app.js');
});
PhpStorm 2016.2 shows this code error on that:
Expression statement is not assignment or call.
Additionally, the code auto-formatter mucks everything up when it encounters this because it sees it as an error.
How do I get PhpStorm to stop showing that as an error?