]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tslint.json
Client: responsive design
[github/Chocobozzz/PeerTube.git] / client / tslint.json
CommitLineData
44124980 1{
a563a494 2 "rulesDirectory": ["./node_modules/codelyzer"],
44124980
C
3 "rules": {
4 "class-name": true,
33f12c74 5 "no-inferrable-types": true,
44124980
C
6 "curly": false,
7 "eofline": true,
8 "indent": ["spaces"],
9 "max-line-length": [true, 140],
10 "member-ordering": [true,
11 "public-before-private",
12 "static-before-instance",
13 "variables-before-functions"
14 ],
15 "no-arg": true,
16 "no-construct": true,
44124980
C
17 "no-duplicate-variable": true,
18 "no-empty": true,
19 "no-eval": true,
20 "no-trailing-whitespace": true,
21 "no-unused-expression": true,
44124980
C
22 "no-use-before-declare": true,
23 "one-line": [true,
24 "check-open-brace",
25 "check-catch",
26 "check-else",
27 "check-whitespace"
28 ],
29 "quotemark": [true, "single"],
30 "semicolon": true,
31 "trailing-comma": true,
32 "triple-equals": true,
33 "variable-name": false,
34
9bce7592
C
35 "directive-selector": [true, "attribute", "my", "camelCase"],
36 "component-selector": [true, "element", "my", "kebab-case"],
a563a494
C
37 "use-input-property-decorator": true,
38 "use-output-property-decorator": true,
39 "use-host-property-decorator": true,
40 "no-attribute-parameter-decorator": true,
41 "no-input-rename": true,
42 "no-output-rename": true,
9bce7592 43 "no-forward-ref": true,
a563a494
C
44 "use-life-cycle-interface": true,
45 "use-pipe-transform-interface": true,
46 "pipe-naming": [true, "camelCase", "my"],
47 "component-class-suffix": true,
ccf6ed16 48 "directive-class-suffix": true,
9bce7592
C
49 "templates-use-public": true,
50 "no-access-missing-member": true,
51 "invoke-injectable": true,
ccf6ed16
C
52
53 "typedef-whitespace": [ true,
54 {
55 "call-signature": "nospace",
56 "index-signature": "nospace",
57 "parameter": "nospace",
58 "property-declaration": "nospace",
59 "variable-declaration": "nospace"
60 }
61 ],
62 "whitespace": [ true,
63 "check-branch",
64 "check-decl",
65 "check-operator",
66 "check-separator",
67 "check-type"
68 ]
44124980
C
69 }
70}