jscs-jsdoc
jscs-jsdoc copied to clipboard
Add apiDoc tags support
https://github.com/apidoc/apidoc/
Blocked by #69
:+1: Any updates on this?
The idea was to add a preset with all apiDoc tags. But it's useless until there is no multipreset support. #69
Atm you can do it manually (see http://jscs.info/rule/jsDoc#checkAnnotations):
{ "preset": "jsduck5",
"extra": {
"api": "some",
"apiName": "some",
"apiGroup": "some",
"apiParam": "some",
"apiSuccess": "some"
} }
Thanks @zxqfox :+1: As you mentioned, solved it manually :smiley:
"jsDoc" : {
"checkAnnotations": {
"preset": "jsduck5",
"extra": {
"api": "some",
"apiName": "some",
"apiGroup": "some",
"apiParam": "some",
"apiSuccess": "some",
"apiVersion": "some",
"apiDescription": "some"
}
}
}