Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
tslint.json 646 B
{
    "defaultSeverity": "error",
    "extends": "tslint:recommended",
    "rules": {
        "indent": { "options": ["spaces", 4] },
        "linebreak-style": { "options": ["LF"] },
        "semicolon": { "options": ["always"] },
        "max-line-length": {
            "severity": "warning",
            "options": [120] 
        },
        "no-console": {
            "severity": "warning",
            "options": [
                "debug",
                "info",
                "log",
                "time",
                "timeEnd",
                "trace"
            ]
        }
    },
    "jsRules": true,
    "rulesDirectory": []
}