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

tslint.json - github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 896aac39f314513dd1b21668be1fe75e79779ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
    "defaultSeverity": "error",
    "extends": [
        "tslint:recommended"
    ],
    "jsRules": {},
    "rules": {
      "quotemark": [true, "single"],
      "prefer-const": false,
      "trailing-comma": false,
      "semicolon": [true, "always"],
      "ordered-imports": false,
      "member-ordering": false,
      "arrow-parens": false,
      "no-angle-bracket-type-assertion": false,
      "comment-format": false,
      "max-line-length": false,
      "only-arrow-functions": false,
      "unified-signatures": false,
      "interface-name": true,
      "object-literal-sort-keys": false,
      "max-classes-per-file": false,
      "no-console": false,
      "no-bitwise": false,
      "no-shadowed-variable": false,
      "no-var-requires": false,
      "no-unused-expression": [true, "allow-new"],
      "forin": false,
      "no-empty": false,
      "ban-types": false
    },
    "rulesDirectory": []
}