-
Notifications
You must be signed in to change notification settings - Fork 158
Description
Following PluralSight tutorial and I get this error within brackets.
"JSCS has timed out after waiting for 10000ms"
I did some searching around couldn't figure out how to fix it.
I am posting here as a potential issue, because modifying the .jscsrc file to only have
{
"excludeFiles": ["node_modules/**", "bower_components/**"],
"requireCurlyBraces": [
"if",
"else",
"for",
"while",
"do",
"try",
"catch"
]
}
fixes the problem. That is just a small snippet of the whole settings file, so I think this may be due to some other setting that is used in that file causing it to timeout?
Edit: I tried commenting out each setting one at a time, and it seemed to be fixed after commenting out
"disallowMultipleLineBreaks": true,
So I thought I found the issue. But, I tried changing one of my .js files to something that would error, and it gave this timeout issue again. I think it's just giving this timeout issue, any time it has to report an error? So it may not be an issue with these files.