https://github.com/Microsoft/TypeScript
Revision a80a4ba0a42eec068ccf703743f44568f5f4f72f authored by Dan Quirk on 09 July 2015, 23:39:58 UTC, committed by Dan Quirk on 09 July 2015, 23:39:58 UTC
1 parent 27f5bf1
Raw File
Tip revision: a80a4ba0a42eec068ccf703743f44568f5f4f72f authored by Dan Quirk on 09 July 2015, 23:39:58 UTC
Add jake task for linting the compiler sources
Tip revision: a80a4ba
tslint.json
{
    "rules": {
        "class-name": true,
        "comment-format": [true,
            "check-space"
        ],
        "indent": true,
        "one-line": [true,
            "check-open-brace"
        ],
        "no-unreachable": true,
        "no-use-before-declare": true,
        "no-var-keyword": true,
        "quotemark": true,
        "semicolon": true,
        "whitespace": [true,
            "check-branch",
            "check-operator",
            "check-separator",
            "check-type"
        ]
  }
}
back to top