{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended"
    ],
    "jsRules": {},
    "rules": {
        "no-empty": false,
        "variable-name": [
            true,
            "allow-leading-underscore",
            "allow-snake-case"
        ],
        "member-ordering": [
            true,
            "private-public"
        ],
        "no-unused-expression": [
            true,
            "allow-fast-null-checks"
        ],
        "arrow-parens": [
            true,
            "ban-single-arg-parens"
        ],
        "align": [
            true,
            "statements",
            "members",
            "elements"
        ],
        "object-literal-sort-keys": false,
        "trailing-comma": [
            true,
            {
                "multiline": {
                    "arrays": "always",
                    "functions": "never",
                    "typeLiterals": "ignore"
                },
                "esSpecCompliant": true
            }
        ],
        "no-empty-interface": false,
        "no-reference": false
    },
    "rulesDirectory": []
}