Standardize @return, @param, type case.

This commit is contained in:
Kevin Schaaf
2017-04-14 14:39:00 -07:00
parent dab794b2fe
commit 8cab18b15d
10 changed files with 42 additions and 31 deletions

View File

@@ -6,7 +6,18 @@
"no-var": "error",
"strict": "error",
"valid-jsdoc": ["error", {
"requireReturn": false
"requireReturn": false,
"prefer": {
"arg": "param",
"argument": "param",
"returns": "return"
},
"preferType": {
"Boolean": "boolean",
"Number": "number",
"String": "string",
"object": "Object"
}
}]
},
"env": {