-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Angular (ngdoc) tag set #151
Comments
This is an issue that would also be useful for me. 👍 |
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
The text was updated successfully, but these errors were encountered: