Revision 794c57478ec2a44ee15fb3e245a4c5d2d1612375 authored by Daniel Rosenwasser on 09 April 2016, 03:51:15 UTC, committed by Daniel Rosenwasser on 09 April 2016, 03:51:15 UTC
2 parent s f4ddf4b + 39181e6
Raw File
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