0.1.0 • Published 8 months ago

eslint-plugin-call-func-with-return v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
8 months ago

eslint-plugin-call-func-with-return

中文文档

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
}

Installation

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

Usage

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"]]
    }
}