jscs-jsdoc
jscs-jsdoc copied to clipboard
JsDoc validation rules for jscs
``` /** * @function * @this AuthenticationsPage * @return {Promise} a Promise that returns {@code undefined} on success and {@code Error} on * failure */ ``` This is a function,...
Hi, How do you enable/disable individual rules? I have been able to disable either all rules with: ``` // jscs:disable ``` And I have been able to disable all jsDoc...
According to mdevils/node-jscs#245 we should check it all and describe in docs. e.g. ``` js /** * @param {Object} person comment * - {String} title comment * - {Number} [age]...
Bunch of these options could be very nice to support at server-side checking https://github.com/spadgos/sublime-jsdocs
Given: ``` /** * Create a new precondition. * * @param {Object} parameter the parameter value * @param {String} name the parameter name * @return {ObjectPreconditions} the precondition */ Preconditions.requireThat...