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

Side by Side Diff: .eslintrc

Issue 2439593004: Turn on eslint rule key-spacing and fix existing errors. (Closed)
Patch Set: 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 | dashboard/dashboard/elements/report-page-test.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": "error", 21 "eqeqeq": "error",
22 "generator-star-spacing": ["error", "after"], 22 "generator-star-spacing": ["error", "after"],
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": "error",
27 "keyword-spacing": "error", 27 "keyword-spacing": "error",
28 "max-len": ["error", { 28 "max-len": ["error", {
29 "ignorePattern": "((// @suppress longLineCheck)|:)$", 29 "ignorePattern": "((// @suppress longLineCheck)|:)$",
30 "ignoreUrls": true 30 "ignoreUrls": true
31 }], 31 }],
32 "max-nested-callbacks": "off", 32 "max-nested-callbacks": "off",
33 "max-statements-per-line": "off", 33 "max-statements-per-line": "off",
34 "new-cap": "off", 34 "new-cap": "off",
35 "new-parens": "off", 35 "new-parens": "off",
36 "no-alert": "off", 36 "no-alert": "off",
(...skipping 50 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 | dashboard/dashboard/elements/report-page-test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698