https://github.com/Microsoft/TypeScript
Revision a1ff917aa2ad10507673bebd2a61b669ad839eaf authored by Mohamed Hegazy on 20 November 2015, 22:33:31 UTC, committed by Mohamed Hegazy on 20 November 2015, 22:33:31 UTC
1 parent d370ac8
Raw File
Tip revision: a1ff917aa2ad10507673bebd2a61b669ad839eaf authored by Mohamed Hegazy on 20 November 2015, 22:33:31 UTC
Update LKG
Tip revision: a1ff917
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