{
    "extends": [
        "tslint:recommended",
        "tslint-react"
    ],
    "rules": {
        "arrow-parens": false,
        "class-name": true,
        "comment-format": [
            true,
            "check-space"
        ],
        "indent": [
            true,
            "spaces"
        ],
        "interface-name": [
            false
        ],
        "jsx-alignment": false,
        "jsx-no-lambda": true,
        "jsx-wrap-multiline": false,
        "jsx-no-multiline-js": false,
        "jsx-no-string-ref": true,
        "jsx-self-close": true,
        "jsx-curly-spacing": "always",
        "jsx-boolean-value": false,
        "max-classes-per-file": false,
        "max-line-length": [
            false
        ],
        "member-access": false,
        "no-duplicate-variable": true,
        "no-empty": false,
        "no-eval": true,
        "no-internal-module": true,
        "no-trailing-whitespace": true,
        "no-var-keyword": true,
        "object-literal-sort-keys": false,
        "one-line": [
            true,
            "check-open-brace",
            "check-whitespace"
        ],
        "ordered-imports": false,
        "radix": false,
        "quotemark": [
            true,
            "single",
            "avoid-escape",
            "jsx-double"
        ],
        "semicolon": [
            true,
            "always"
        ],
        "switch-default": false,
        "trailing-comma": [
            false
        ],
        "triple-equals": [
            true,
            "allow-null-check"
        ],
        "typedef-whitespace": [
            true,
            {
                "call-signature": "nospace",
                "index-signature": "nospace",
                "parameter": "nospace",
                "property-declaration": "nospace",
                "variable-declaration": "nospace"
            }
        ],
        "variable-name": [
            true,
            "ban-keywords"
        ],
        "whitespace": [
            true,
            "check-branch",
            "check-decl",
            "check-operator",
            "check-separator",
            "check-type"
        ]
    }
}