{
    "extends": ["tslint-react"],
    "rules": {
        "align": [true, "parameters", "statements"],
        "ban": false,
        "class-name": true,
        "comment-format": [true, "check-space"],
        "curly": true,
        "eofline": true,
        "forin": true,
        "indent": [true, "spaces", 4],
        "interface-name": [true, "never-prefix"],
        "jsdoc-format": [true, "check-multiline-start"],
        "jsx-no-lambda": false,
        "jsx-no-multiline-js": false,
        "jsx-boolean-value": [true, "never"],
        "jsx-space-before-trailing-slash": true,
        "jsx-key": true,
        "jsx-no-bind": true,
        "jsx-self-close": true,
        "jsx-wrap-multiline": false,
        "jsx-use-translation-function": false,
        "label-position": true,
        "max-line-length": [true, { "limit": 160, "ignore-pattern": "^\\s*d=|^\\s*points=" }],
        "member-access": [true, "no-public"],
        "no-any": true,
        "no-arg": true,
        "no-bitwise": true,
        "no-console": true,
        "no-consecutive-blank-lines": [true, 2],
        "no-construct": true,
        "no-debugger": true,
        "no-duplicate-variable": true,
        "no-empty": false,
        "no-eval": true,
        "no-shadowed-variable": true,
        "no-string-literal": true,
        "no-switch-case-fall-through": true,
        "no-trailing-whitespace": true,
        "no-unused-expression": true,
        "one-line": [true, "check-catch", "check-else", "check-open-brace", "check-whitespace"],
        "quotemark": [true, "single", "jsx-double"],
        "radix": true,
        "semicolon": [true, "always", "ignore-bound-class-methods"],
        "switch-default": false,
        "trailing-comma": [false],
        "triple-equals": true,
        "typedef": [true, "parameter", "property-declaration"],
        "typedef-whitespace": [
            true,
            {
                "call-signature": "nospace",
                "index-signature": "nospace",
                "parameter": "nospace",
                "property-declaration": "nospace",
                "variable-declaration": "nospace"
            }
        ],
        "variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"],
        "whitespace": [
            true,
            "check-branch",
            "check-decl",
            "check-module",
            "check-operator",
            "check-separator",
            "check-type",
            "check-typecast"
        ]
    }
}
