Open qfox opened 9 years ago
This is an issue that would also be useful for me. :+1:
You can use the extra features or make a pull request with a new ngdoc preset.
"checkAnnotations": {
"preset": "jsdoc3",
"extra": {
"ngdoc": true,
"restrict": true
}
}
I have the same problem. How can I ignore ngdoc directives in jscs?
@cristianurbano I managed to get this working with the following .jscsrc:
{
"preset": "google",
"maximumLineLength": 120,
"disallowMultipleVarDecl": false,
"jsDoc": {
"checkAnnotations": {
"preset": "jsdoc3",
"extra": {
"ngdoc": "some",
"methodOf": "some"
}
}
}
}
You may need to add more entries to the extra section for the tags you use.
yes, would be great to get such a support native integrated into jsdoc
@gavD , that works for me! thanks!
are there any updates on this issue? Anything which maybe planned for the near future?
https://github.com/angular/angular.js/wiki/Writing-AngularJS-Documentation#angularjs-specific-ngdoc-directives
@ngdoc
@restrict
etc./cc @asgeirbirkis