Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1033)

Side by Side Diff: web/inc/tslint.json

Issue 2717043002: Add LogDog log stream fetcher code. (Closed)
Patch Set: fix bug, underscore variable names Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « web/inc/luci-operation/operation.ts ('k') | web/web.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "rules": { 2 "rules": {
3 "class-name": true, 3 "class-name": true,
4 "comment-format": [true, "check-space"], 4 "comment-format": [true, "check-space"],
5 "eofline": true, 5 "eofline": true,
6 "forin": true, 6 "forin": true,
7 "indent": [true, "spaces"], 7 "indent": [true, "spaces"],
8 "jsdoc-format": true, 8 "jsdoc-format": true,
9 "label-position": true, 9 "label-position": true,
10 "no-arg": true, 10 "no-arg": true,
11 "no-conditional-assignment": true, 11 "no-conditional-assignment": true,
12 "no-construct": true, 12 "no-construct": true,
13 "no-debugger": true, 13 "no-debugger": true,
14 "no-duplicate-variable": true, 14 "no-duplicate-variable": true,
15 "no-empty": true, 15 "no-empty": true,
16 "no-inferrable-types": true, 16 "no-inferrable-types": true,
17 "no-internal-module": true, 17 "no-internal-module": true,
18 "no-shadowed-variable": true, 18 "no-shadowed-variable": true,
19 "no-switch-case-fall-through": true, 19 "no-switch-case-fall-through": true,
20 "no-trailing-whitespace": true, 20 "no-trailing-whitespace": true,
21 "no-unused-expression": true, 21 "no-unused-expression": true,
22 "no-use-before-declare": true, 22 "no-use-before-declare": true,
23 "no-var-keyword": true, 23 "no-var-keyword": true,
24 "quotemark": [true, "single"], 24 "quotemark": [true, "single"],
25 "radix": true, 25 "radix": true,
26 "semicolon": [true, "always"], 26 "semicolon": [true, "always"],
27 "switch-default": true, 27 "switch-default": true,
28 "triple-equals": [true, "allow-null-check"], 28 "triple-equals": [true, "allow-null-check"],
29 "variable-name": [true, "check-format", "ban-keywords"] 29 "variable-name": [true, "check-format", "ban-keywords", "allow-leading-under score"]
30 } 30 }
31 } 31 }
OLDNEW
« no previous file with comments | « web/inc/luci-operation/operation.ts ('k') | web/web.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698