Update
And if you really want to know what error codes belong to what options, I guess you'll have to dive in the source code here..
But usually the documentation should be enough, curly option:
This option requires you to always put curly braces around blocks in
loops and conditionals. JavaScript allows you to omit curly braces
when the block consists of only one statement, for example:
while (day)
shuffle();
However, in some circumstances, it can lead
to bugs (you'd think that sleep() is a part of the loop while in
reality it is not):
while (day)
shuffle();
sleep();
Also, if sometimes you wonder what an error code corresponds to, check this file:
messages.js
So in your case:
messages.js#L189