korhan-Ö
12/26/2017 - 1:43 PM

Eslint

//disable for a file
/* eslint-disable */
    "rules": {
        "indent": [
            2,
            4
        ],
        
        "no-console":"off",
        "no-underscore-dangle": ["error", {
            "allow": [
                //for mongo object
                "_doc", "user._doc", "_id"
            ]
        }]
    }