jscs-dev / jscs-jsdoc

JsDoc validation rules for jscs
MIT License
99 stars 35 forks source link

Add @override tag support #178

Closed demxa closed 8 years ago

demxa commented 8 years ago

It used at Google JS Style Guide:

@override For example:

/**
 * @return {string} Human-readable representation of project.SubClass.
 * @override
 */
project.SubClass.prototype.toString = function() {
  // ...
};

https://google.github.io/styleguide/javascriptguide.xml?showone=Comments#Comments

ricordisamoa commented 8 years ago

177