{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended"
    ],
    "jsRules": {},
    "rules": {
        "arrow-parens": [true, "ban-single-arg-parens"],
        "quotemark": [
            true,
            "single",
            "avoid-escape",
            "avoid-template"
        ],
        "semicolon": false,
        "ordered-imports": false,
        "object-literal-sort-keys": false,
        "jsdoc-format": false,
        "no-string-literal": false,
        "curly": [
            true,
            "ignore-same-line"
        ],
        "variable-name": {
            "options": [
                "allow-leading-underscore"
            ]
        },
        "only-arrow-functions": false,
        "max-line-length": [
            true,
            {
              "limit": 150
            }
        ]
    },
    "rulesDirectory": []
}
