https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 4e2e7602e22d5f9db3a97e4e85ab9c4a4f971679 authored by Anders Hejlsberg on 26 August 2016, 22:52:15 UTC
Accept new baselines
Tip revision: 4e2e760
tslint.json
{
    "rules": {
        "class-name": true,
        "comment-format": [true,
            "check-space"
        ],
        "indent": [true,
            "spaces"
        ],
        "linebreak-style": [true, "CRLF"],
        "one-line": [true,
            "check-open-brace",
            "check-whitespace"
        ],
        "no-var-keyword": true,
        "quotemark": [true,
            "double",
            "avoid-escape"
        ],
        "semicolon": true,
        "whitespace": [true,
            "check-branch",
            "check-operator",
            "check-separator",
            "check-type",
            "check-module"
        ],
        "typedef-whitespace": [true, {
            "call-signature": "nospace",
            "index-signature": "nospace",
            "parameter": "nospace",
            "property-declaration": "nospace",
            "variable-declaration": "nospace"
        }],
        "next-line": [true,
            "check-catch",
            "check-else"
        ],
        "no-internal-module": true,
        "no-trailing-whitespace": true,
        "no-inferrable-types": true,
        "no-null-keyword": true,
        "no-unused-variable": true,
        "boolean-trivia": true,
        "type-operator-spacing": true,
        "prefer-const": true,
        "no-increment-decrement": true,
        "object-literal-surrounding-space": true,
        "no-type-assertion-whitespace": true
  }
}
back to top