Closed brendanvinson closed 8 years ago
When converting from eslint to jscs, valid-jsdoc: 0 converts to jsDoc: true. The issue is that jscs wants the jsDoc option to be an object.
valid-jsdoc: 0
jsDoc: true
After looking through the eslint rules for this, I think the defaults should be something like:
"jsDoc": { "requireReturnTypes": true, "requireReturnDescription": true, "requireParamDescription": true },
When converting from eslint to jscs,
valid-jsdoc: 0
converts tojsDoc: true
. The issue is that jscs wants the jsDoc option to be an object.After looking through the eslint rules for this, I think the defaults should be something like: