{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended"
    ],
    "rulesDirectory": [],
    "rules": {
        "max-line-length": {
            "options": [
                120
            ]
        },
        "new-parens": true,
        "no-arg": true,
        "no-bitwise": true,
        "no-conditional-assignment": true,
        "no-consecutive-blank-lines": false,
        "no-console": {
            "options": [
                "debug",
                "info",
                "log",
                "time",
                "timeEnd",
                "trace"
            ]
        },
        "eofline": true,
        "quotemark": [
            true,
            "single",
            "avoid-escape",
            "avoid-template"
        ],
        "arrow-parens": false,
        "trailing-comma": false,
        "variable-name": [false],
        "max-classes-per-file": [false],
        "interface-name": [false],
        "member-ordering": [false]
    },
    "jsRules": {
        "max-line-length": {
            "options": [
                120
            ]
        }
    }
}