{
    "extends": "tslint:recommended",
    "rules": {
        "variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
        "import-ordering": false,
        "array-type": false,
        "no-console": false,
        "quotemark": false,
        "eofline": false,
        "ordered-imports": false,
        "object-literal-sort-keys": false,
        "object-literal-shorthand": false,
        "trailing-comma": [
            true,
            {
                "multiline": "never",
                "singleline": "never"
            }
        ],
        "semicolon": [true, "always", "ignore-bound-class-methods"],
        "promise-function-async": true,
        "only-arrow-functions": false,
        "no-shadowed-variable": false,
        "member-access": false,
        "radix": false,
        "typedef": [
            true,
            "call-signature",
            "parameter",
            "property-declaration",
            "member-variable-declaration"
        ],
        "whitespace": [
            true,
            "check-branch",
            "check-decl",
            "check-operator",
            "check-separator",
            "check-type",
            "check-typecast"
        ],
        "typedef-whitespace": [
            true,
            {
                "call-signature": "nospace",
                "index-signature": "nospace",
                "parameter": "nospace",
                "property-declaration": "nospace",
                "variable-declaration": "nospace"
            },
            {
                "call-signature": "onespace",
                "index-signature": "onespace",
                "parameter": "onespace",
                "property-declaration": "onespace",
                "variable-declaration": "onespace"
            }
        ]
    }
}