IonicBrazil / ionic-garden

This project is for every ionite who wants to play with Ionic's Source
Other
14 stars 6 forks source link

Add jscs's JSDocs plugin #27

Open felquis opened 9 years ago

felquis commented 9 years ago

Should run with gulp style-guide, package's homepage

felquis commented 9 years ago

I used these rules

"jsDoc": {
    "checkParamNames": true,
    "requireParamTypes": true,
    "checkRedundantParams": true,
    "checkRedundantReturns": true,
    "requireReturnTypes": true,
    "requireParamDescription": true,
    "requireHyphenBeforeDescription": true,
    "disallowNewlineAfterDescription": true,
    "requireDescriptionCompleteSentence": true,
    "enforceExistence": "exceptExports"
}

@giorgiofellipe what do you think about the result?