I believe this means you should move the function calling parens inside the wrapping parens
(function() { /* code */ })()
The two last parens that execute the function are the problem. This is how jslint wants it to look like:
(function() { /* code */ }())