AutolabJS/autolabcli

View on GitHub
.eslintrc.json

Summary

Maintainability
Test Coverage
{
    "extends": "airbnb-base",
    "env" : {
        "node": true,
        "mocha": true
    },
    "rules": {
        "max-lines-per-function" : ["error", 30],
        "no-plusplus" : ["error", { "allowForLoopAfterthoughts": true }],
        "no-console" : ["off"],
        "no-unused-vars": [
            "error",
            {
              "varsIgnorePattern": "should|expect|Before|After|Given"
            }
        ]
    }
}