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

Side by Side Diff: third_party/WebKit/Source/devtools/.eslintrc.js

Issue 2713363002: DevTools: Highlight DOM node on hover in flamechart. (Closed)
Patch Set: fix tests 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
OLDNEW
1 module.exports = { 1 module.exports = {
2 "root": true, 2 "root": true,
3 3
4 "env": { 4 "env": {
5 "browser": true, 5 "browser": true,
6 "es6": true 6 "es6": true
7 }, 7 },
8 8
9 "parserOptions": {
10 "ecmaVersion": 8
11 },
12
9 /** 13 /**
10 * ESLint rules 14 * ESLint rules
11 * 15 *
12 * All available rules: http://eslint.org/docs/rules/ 16 * All available rules: http://eslint.org/docs/rules/
13 * 17 *
14 * Rules take the following form: 18 * Rules take the following form:
15 * "rule-name", [severity, { opts }] 19 * "rule-name", [severity, { opts }]
16 * Severity: 2 == error, 1 == warning, 0 == off. 20 * Severity: 2 == error, 1 == warning, 0 == off.
17 */ 21 */
18 "rules": { 22 "rules": {
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 "afterColon": true, 115 "afterColon": true,
112 "align": "value" 116 "align": "value"
113 }], 117 }],
114 // quote-props is diabled, as property quoting styles are too varied to enforce. 118 // quote-props is diabled, as property quoting styles are too varied to enforce.
115 "quote-props": [0, "as-needed"], 119 "quote-props": [0, "as-needed"],
116 120
117 // no-implicit-globals will prevent accidental globals 121 // no-implicit-globals will prevent accidental globals
118 "no-implicit-globals": [0] 122 "no-implicit-globals": [0]
119 } 123 }
120 }; 124 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698