{
    "extends": "tslint:recommended",
    "rules": {
        "no-unused-expression": false,
        "quotemark": [
            "single"
        ],
        "trailing-comma": [
            true,
            {
                "esSpecCompliant": true
            }
        ],
        "no-console": false,
        "no-var-requires": false,
        "object-literal-sort-keys": false,
        "prefer-object-spread": true,
        "forin": false,
        "arrow-parens": [
            true,
            "ban-single-arg-parens"
        ],
        "interface-name": [
            true,
            "never-prefix"
        ],
        "no-namespace": false,
        "max-classes-per-file": false,
        "max-line-length": [
            true,
            {
                "limit": 160,
                "ignore-pattern": "import | export |^export | implements | public "
            }
        ]
    }
}