Newer
Older
goodnight / tslint.json
{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended"
    ],
    "jsRules": {},
    "rules": {
        "no-console": false,
        "one-line":false,
        "typedef-whitespace":false,
        "whitespace": false,
        "no-bitwise": false,
        "max-classes-per-file":false,
        "only-arrow-functions": false,
        "no-unused-expression": false,
        "typedef": [true, "parameter", "member-variable-declaration"],
        "arrow-parens": false
    },
    "rulesDirectory": [],
    "linterOptions": {
        "exclude": [
            "node_modules"
        ]
    }
}