aboutsummaryrefslogtreecommitdiff
path: root/editors/code/tslint.json
blob: f06fa5fab76790a272ccf331a9cf068fa957292e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended",
        "tslint-config-prettier",
        "tslint-plugin-prettier"
    ],
    "rules": {
        "interface-name": false,
        "prettier": true,
        "object-literal-sort-keys": false,
        // Allow `_bar` to sort with tsc's `noUnusedParameters` option
        "variable-name": [true, "allow-leading-underscore"]
    }
}