Reset by default LD_LIBRARY_PATH in xds-project.conf
[src/xds/xds-agent.git] / webapp / tslint.json
1 {
2   "rulesDirectory": [
3     "node_modules/codelyzer"
4   ],
5   "rules": {
6     "trailing-comma": [
7       true,
8       {
9         "multiline": "always",
10         "singleline": "never"
11       }
12     ],
13     "arrow-return-shorthand": true,
14     "callable-types": true,
15     "class-name": true,
16     "comment-format": [
17       true,
18       "check-space"
19     ],
20     "curly": true,
21     "eofline": true,
22     "forin": true,
23     "import-blacklist": [
24       true,
25       "rxjs",
26       "rxjs/Rx"
27     ],
28     "import-spacing": true,
29     "indent": [
30       true,
31       "spaces"
32     ],
33     "interface-over-type-literal": true,
34     "label-position": true,
35     "max-line-length": [
36       true,
37       140
38     ],
39     "member-access": false,
40     "no-arg": true,
41     "no-console": [
42       true,
43       "debug",
44       "log",
45       "time",
46       "timeEnd",
47       "trace"
48     ],
49     "no-construct": true,
50     "no-debugger": true,
51     "no-duplicate-super": true,
52     "no-empty": false,
53     "no-empty-interface": true,
54     "no-eval": true,
55     "no-inferrable-types": [
56       true,
57       "ignore-params"
58     ],
59     "no-misused-new": true,
60     "no-non-null-assertion": true,
61     "no-shadowed-variable": true,
62     "no-string-literal": false,
63     "no-string-throw": true,
64     "no-switch-case-fall-through": true,
65     "no-trailing-whitespace": true,
66     "no-unnecessary-initializer": true,
67     "no-unused-expression": true,
68     "no-use-before-declare": true,
69     "no-var-keyword": true,
70     "object-literal-sort-keys": false,
71     "one-line": [
72       true,
73       "check-open-brace",
74       "check-catch",
75       "check-else",
76       "check-whitespace"
77     ],
78     "prefer-const": true,
79     "quotemark": [
80       true,
81       "single"
82     ],
83     "radix": true,
84     "semicolon": [
85       true,
86       "always"
87     ],
88     "triple-equals": [
89       true,
90       "allow-null-check"
91     ],
92     "typedef-whitespace": [
93       true,
94       {
95         "call-signature": "nospace",
96         "index-signature": "nospace",
97         "parameter": "nospace",
98         "property-declaration": "nospace",
99         "variable-declaration": "nospace"
100       }
101     ],
102     "typeof-compare": true,
103     "unified-signatures": true,
104     "variable-name": false,
105     "whitespace": [
106       true,
107       "check-branch",
108       "check-decl",
109       "check-operator",
110       "check-separator",
111       "check-type"
112     ],
113     "directive-selector": [
114       true,
115       "attribute",
116       "ngx",
117       "camelCase"
118     ],
119     "component-selector": [
120       true,
121       "element",
122       ["ngx", "xds"],
123       "kebab-case"
124     ],
125     "use-input-property-decorator": true,
126     "use-output-property-decorator": true,
127     "use-host-property-decorator": true,
128     "no-input-rename": true,
129     "no-output-rename": true,
130     "use-life-cycle-interface": true,
131     "use-pipe-transform-interface": true,
132     "component-class-suffix": true,
133     "directive-class-suffix": true,
134     "no-access-missing-member": false,
135     "templates-use-public": true,
136     "invoke-injectable": true
137   }
138 }