{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended"
    ],
    "jsRules": {},
    "rules": {
        "arrow-parens": [true, "ban-single-arg-parens"],
        "ordered-imports": false,
        "trailing-comma": false,
        "array-type": [true, "array-simple"],
        "prefer-const": true,
        "new-parens": true,
        "no-consecutive-blank-lines": true,
        "no-trailing-whitespace": true,
        "no-unnecessary-initializer": true,
        "one-variable-per-declaration": true,
        "space-before-function-paren": [true, "always"],
        "interface-name": [true, "never-prefix"],
        "forin": false,
        "indent": [true, "spaces", 2],
        "jsdoc-format": false,
        "object-literal-sort-keys": false,
        "member-ordering": false,
        "prefer-for-of": false,
        "max-line-length": false,
        "only-arrow-functions": false,
        "ban-types": false,
        "no-console": false,
        "no-empty": false,
        "semicolon": [true, "never"],
        "no-var-requires": false,
        "quotemark": [true, "single", "avoid-escape", "avoid-template"],
        "unified-signatures": false
    },
    "rulesDirectory": []
}
