Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tslint.json - github.com/nextcloud/appstore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b1cdbf77324bc2f6fadd539e16326470fb617d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
    "extends": "tslint:recommended",
    "rules": {
        "no-any": true,
        "no-duplicate-variable": true,
        "indent": [true, "spaces"],
        "quotemark": [true, "single"],
        "max-line-length": [true, 80],
        "prefer-const": true,
        "no-console": ["log", {"allow": ["warn", "error"]}]
    }
}