{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended"
    ],
    "jsRules": {
        "no-console": false,
        "no-switch-case-fall-through": true,
        "object-literal-sort-keys": false,
        "max-line-length": [
            true,
            140
        ],
        "semicolon": [
            true,
            "never"
        ],
        "space-before-function-paren": [
            true,
            {
                "anonymous": "always",
                "asyncArrow": "always",
                "named": "never",
                "method": "never",
                "constructor": "never"
            }
        ],
        "trailing-comma": false
    },
    "rules": {
        "indent": [
            false
        ],
        "ordered-imports": false,
        "array-type": false,
        "arrow-parens": false,
        "interface-name": false,
        "no-empty-interface": false,
        "max-line-length": [
            true,
            140
        ],
        "max-classes-per-file": false,
        "no-namespace": false,
        "no-any": true,
        "object-literal-sort-keys": false,
        "no-consecutive-blank-lines": [
            false
        ],
        "no-invalid-this": [
            true,
            "check-function-in-method"
        ],
        "no-switch-case-fall-through": true,
        "space-before-function-paren": [
            true,
            {
                "anonymous": "always",
                "asyncArrow": "always",
                "named": "never",
                "method": "never",
                "constructor": "never"
            }
        ],
        "semicolon": [
            true,
            "never"
        ],
        "trailing-comma": false,
        "typedef": [
            true,
            "call-signature",
            "parameter",
            "property-declaration",
            "member-variable-declaration",
            "object-destructuring",
            "array-destructuring"
        ]
    },
    "rulesDirectory": []
}
