{
    "extends": ["tslint:recommended", "tslint-react"],
    "rules": {
        /*
         * Any rules specified here will override those from the base config we are extending.
         */
        "ordered-imports": false,
        "curly": true,
        "no-var-keyword": true,
        "no-duplicate-variable": true,
        "no-eval": true,
        "no-internal-module": true,
        "no-trailing-whitespace": true,
        "no-var-requires": false, // to use require statment in ts
        "semicolon": false,
        "object-literal-sort-keys": false,
        "quotemark": [true, "single"],
        "no-console": [false, "log"],
        "only-arrow-functions": false,
        "prefer-const": true,
        "variable-name": false,
        // tslint-react rules.
        "jsx-no-lambda": false,
        "jsx-no-multiline-js": false,
        "jsx-wrap-multiline": false,
        "jsx-alignment": false,
        "jsx-curly-spacing": false,
        "whitespace": false,
        "trailing-comma": false,
        "no-empty": false,
        "no-empty-interface": false,
        "object-literal-shorthand": false,
        "max-line-length": [180, true],
        "no-shadowed-variable": false,
        "interface-name": false
    }
}
