{
    "extends": "tslint-config-airbnb",
    "rules": {
        "indent": [
            true,
            "tabs"
        ],
        "ter-indent": [
            true,
            "tab"
        ],
        "variable-name": [
            true,
            "ban-keywords",
            "check-format",
            "allow-leading-underscore"
        ],
        "quotemark": [
            true,
            "single"
        ],
        "no-var-keyword": false,
        "no-consecutive-blank-lines": true,
        "function-name": [
            true,
            {
                "function-regex": "^[a-z$][\\w\\d]+$",
                "method-regex": "^[a-z$][\\w\\d]+$",
                "private-method-regex": "^[a-z$][\\w\\d]+$",
                "protected-method-regex": "^[a-z_$][\\w\\d]+$",
                "static-method-regex": "^[a-z$][\\w\\d]+$"
            }
        ],
        "no-unused-variable": true
    }
}