Call specified functions with return statement.
function jsonRet(data = {}, retCode, retMessage) {
return {
data,
retCode,
retMessage,
}
}
function main() {
jsonRet({ author: 'elvinn' }); // error
return jsonRet({ author: 'elvin' }); // ok
}
You'll first need to install ESLint:
$ npm i eslint --save-dev
Next, install eslint-plugin-call-func-with-return
:
$ npm install eslint-plugin-call-func-with-return --save-dev
Add call-func-with-return
to the plugins section of your .eslintrc
configuration file. You can omit the eslint-plugin-
prefix:
{
"plugins": [
"call-func-with-return"
]
}
Then configure the rules you want to use under the rules section.
{
"rules": {
"call-func-with-return/call-func-with-return": [2, ["jsonRet", "xmlRet"]]
}
}