Currently I\'m running my tests with protractor/grunt but I\'m getting the follow error message:
\'arrow function syntax (=>)\' is only available in ES6 (use
You can do more project-specific settings by following these steps.
.vscode
at the root of your project directorysettings.json
{ "jshint.options": { "esversion": 6 } }
You can add some more settings to keep things consistents across your team.
{
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"jshint.options": {
"esversion": 6
}
}