]> git.proxmox.com Git - mirror_xterm.js.git/blame - tslint.json
Create `terminal.buffer` convenience attribute
[mirror_xterm.js.git] / tslint.json
CommitLineData
33f7d764
PK
1{
2 "rules": {
3 "class-name": true,
4 "comment-format": [
5 true,
6 "check-space"
7 ],
8 "indent": [
9 true,
10 "spaces"
11 ],
12 "eofline": true,
13 "no-eval": true,
14 "no-internal-module": true,
15 "no-trailing-whitespace": true,
16 "no-unsafe-finally": true,
17 "no-var-keyword": true,
18 "quotemark": [
19 true,
20 "single"
21 ],
22 "semicolon": [
23 true,
24 "always"
25 ],
26 "triple-equals": [
27 true,
28 "allow-null-check"
29 ],
30 "typedef-whitespace": [
31 true,
32 {
33 "call-signature": "nospace",
34 "index-signature": "nospace",
35 "parameter": "nospace",
36 "property-declaration": "nospace",
37 "variable-declaration": "nospace"
38 }
39 ],
40 "variable-name": [
41 true,
42 "ban-keywords"
43 ],
44 "whitespace": [
45 true,
46 "check-branch",
47 "check-decl",
48 "check-operator",
49 "check-separator",
50 "check-type"
51 ]
52 }
53}