https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 1a8406d8b05e8efea768a1788cc9024f9425a1e5 authored by Daniel Rosenwasser on 14 December 2015, 21:21:51 UTC
Update LKG.
Tip revision: 1a8406d
tslint.json
{
    "rules": {
        "class-name": true,
        "comment-format": [true,
            "check-space"
        ],
        "indent": [true,
            "spaces"
        ],
        "one-line": [true,
            "check-open-brace",
            "check-whitespace"
        ],
        "no-var-keyword": true,
        "quotemark": [true,
            "double"
        ],
        "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": true,
        "boolean-trivia": true
  }
}
back to top