UNPKG

900 BJSONView Raw
1{
2 "extends": [
3 "tslint:latest",
4 "tslint-microsoft-contrib/recommended_ruleset"
5 ],
6 "jsRules": {},
7 "rules": {
8 "arrow-parens": [
9 true
10 ],
11 "arrow-return-shorthand": [
12 true
13 ],
14 "curly": true,
15 "export-name": false,
16 "import-name": false,
17 "interface-over-type-literal": true,
18 "linebreak-style": [
19 "LF",
20 true
21 ],
22 "no-any": false,
23 "no-default-export": false,
24 "no-internal-module": true,
25 "no-magic-numbers": true,
26 "no-misused-new": true,
27 "no-relative-imports": false,
28 "no-unnecessary-initializer": true,
29 "no-unsafe-any": false,
30 "prefer-function-over-method": true,
31 "prefer-method-signature": true,
32 "typedef": [
33 true,
34 "parameter",
35 "property-declaration",
36 "member-variable-declaration"
37 ]
38 },
39 "rulesDirectory": [
40 "node_modules/tslint-microsoft-contrib"
41 ]
42}
\No newline at end of file