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 */ }())
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…