Merge pull request #2417 from luser/fix-weak-map-keys
[shumway.git] / tslint.json
blobed42a0588819c39508dac2c291280a0bc6433961
2   "rules": {
3     "class-name": true,
4     "curly": false,
5     "eofline": true,
6     "forin": false,
7     "label-position": true,
8     "label-undefined": true,
9     "max-line-length": [false, 140],
10     "no-arg": true,
11     "no-bitwise": false,
12     "no-console": [true,
13         "debug",
14         "info",
15         "time",
16         "timeEnd",
17         "trace"
18     ],
19     "no-construct": true,
20     "no-debugger": true,
21     "no-duplicate-key": true,
22     "no-duplicate-variable": false,
23     "no-empty": true,
24     "no-eval": true,
25     "no-string-literal": false,
26     "no-switch-case-fall-through": false,
27     "no-trailing-comma": true,
28     "no-trailing-whitespace": false,
29     "no-unused-expression": false,
30     "no-unused-variable": false,
31     "no-unreachable": true,
32     "no-use-before-declare": false,
33     "one-line": [true,
34         "check-catch",
35         "check-else",
36         "check-whitespace"
37     ],
38     "quotemark": [false, "double"],
39     "radix": false,
40     "semicolon": true,
41     "triple-equals": [false, "allow-null-check"],
42     "variable-name": false,
43     "whitespace": [false,
44         "check-branch",
45         "check-decl",
46         "check-operator",
47         "check-separator",
48         "check-type"
49     ]
50   }