Since updating to 0.3.x, I get a lot of linting errors where there previously were none.
Config:
jsDoc: {
checkAnnotations: 'closurecompiler',
checkParamNames: true,
checkRedundantParams: true,
checkRedundantReturns: true,
requireParamTypes: true,
requireReturnTypes: true
}
Example that produces the error:
/**
* Pad the given string so that it is at least `len` length.
* @param {String} str
* @param {Number} len
* @return {String}
*/
function padUntil(str, len) {
return str + Array(len - str.length).join(' ');
}
It's not clear to me what the problem is now.
Since updating to
0.3.x, I get a lot of linting errors where there previously were none.Config:
Example that produces the error:
It's not clear to me what the problem is now.