I have integrated [JSLint][1] into my Angular App, using ES6 style IIFE's. However, I am encountering an error message:
Instead of seeing an expression, it was expected to find an assignment or function call
This issue arises when analyzing the following code snippet:
{
'use strict';
angular.module('MyModule', []);
}
Should I consider removing the 'use strict' declaration in this specific scenario?