https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 90a317f62e02020717fd4b059676aceb4c161e27 authored by Ron Buckton on 22 February 2016, 23:58:33 UTC
Merge branch 'transforms-transformer' into transforms-printer
Tip revision: 90a317f
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,
        "no-unused-variable": true,
        "boolean-trivia": true,
        "type-operator-spacing": true,
        "prefer-const": true,
        "no-in-operator": true,
        "no-increment-decrement": true
  }
}
back to top