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

Side by Side Diff: common/eslint/.eslintrc

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: more changes from code review Created 4 years, 2 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 | « no previous file | tracing/tracing/base/color.html » ('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 "extends": "google", 2 "extends": "google",
3 "plugins": ["html"], 3 "plugins": ["html"],
4 "rules": { 4 "rules": {
5 "accessor-pairs": "off", 5 "accessor-pairs": "off",
6 "array-bracket-spacing": "off", 6 "array-bracket-spacing": "off",
7 "array-callback-return": "off", 7 "array-callback-return": "off",
8 "arrow-parens": "off", 8 "arrow-parens": "off",
9 "block-scoped-var": "off", 9 "block-scoped-var": "off",
10 "brace-style": "off", 10 "brace-style": "off",
11 "camelcase": "off", 11 "camelcase": "off",
12 "catapult-camelcase": ["error", { 12 "catapult-camelcase": ["error", {
13 "properties": "never" 13 "properties": "never"
14 }], 14 }],
15 "comma-dangle": "off", 15 "comma-dangle": "off",
16 "comma-spacing": "off", 16 "comma-spacing": "off",
17 "curly": "off", 17 "curly": "off",
18 "default-case": "off", 18 "default-case": "off",
19 "dot-location": "off", 19 "dot-location": "off",
20 "dot-notation": "off", 20 "dot-notation": "off",
21 "eqeqeq": "off", 21 "eqeqeq": "error",
22 "generator-star-spacing": "off", 22 "generator-star-spacing": "off",
23 "guard-for-in": "off", 23 "guard-for-in": "off",
24 "handle-callback-err": "off", 24 "handle-callback-err": "off",
25 "indent": "off", 25 "indent": "off",
26 "key-spacing": "off", 26 "key-spacing": "off",
27 "keyword-spacing": "off", 27 "keyword-spacing": "off",
28 "max-len": ["error", { 28 "max-len": ["error", {
29 "ignorePattern": "((// @suppress longLineCheck)|:)$", 29 "ignorePattern": "((// @suppress longLineCheck)|:)$",
30 "ignoreUrls": true 30 "ignoreUrls": true
31 }], 31 }],
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "require-jsdoc": "off", 87 "require-jsdoc": "off",
88 "semi": "off", 88 "semi": "off",
89 "semi-spacing": "off", 89 "semi-spacing": "off",
90 "space-unary-ops": "off", 90 "space-unary-ops": "off",
91 "spaced-comment": "off", 91 "spaced-comment": "off",
92 "valid-jsdoc": "off", 92 "valid-jsdoc": "off",
93 "wrap-iife": "off", 93 "wrap-iife": "off",
94 "yoda": "off" 94 "yoda": "off"
95 } 95 }
96 } 96 }
OLDNEW
« no previous file with comments | « no previous file | tracing/tracing/base/color.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698