https://github.com/Microsoft/TypeScript
Raw File
Tip revision: baeedab96c609ec3b48877b7f535b587e0f480c3 authored by Daniel Rosenwasser on 18 August 2017, 18:47:41 UTC
Accepted LKG
Tip revision: baeedab
tslint.json
{
    "rulesDirectory": "built/local/tslint",
    "rules": {
        "boolean-trivia": true,
        "class-name": true,
        "comment-format": [true,
            "check-space"
        ],
        "curly":[true, "ignore-same-line"],
        "debug-assert": true,
        "indent": [true,
            "spaces"
        ],
        "jsdoc-format": true,
        "linebreak-style": [true, "CRLF"],
        "next-line": [true,
            "check-catch",
            "check-else"
        ],
        "no-bom": true,
        "no-in-operator": true,
        "no-increment-decrement": true,
        "no-inferrable-types": true,
        "no-internal-module": true,
        "no-null-keyword": true,
        "no-switch-case-fall-through": true,
        "no-trailing-whitespace": [true, "ignore-template-strings"],
        "no-type-assertion-whitespace": true,
        "no-var-keyword": true,
        "object-literal-shorthand": true,
        "object-literal-surrounding-space": true,
        "one-line": [true,
            "check-open-brace",
            "check-whitespace"
        ],
        "prefer-const": true,
        "quotemark": [true,
            "double",
            "avoid-escape"
        ],
        "semicolon": [true, "always", "ignore-bound-class-methods"],
        "triple-equals": true,
        "type-operator-spacing": true,
        "typedef-whitespace": [
            true,
            {
                "call-signature": "nospace",
                "index-signature": "nospace",
                "parameter": "nospace",
                "property-declaration": "nospace",
                "variable-declaration": "nospace"
            },
            {
                "call-signature": "onespace",
                "index-signature": "onespace",
                "parameter": "onespace",
                "property-declaration": "onespace",
                "variable-declaration": "onespace"
            }
        ],
        "whitespace": [true,
            "check-branch",
            "check-decl",
            "check-operator",
            "check-module",
            "check-separator",
            "check-type"
        ]
	}
}
back to top