Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Release proposal: v6.2.1 #7108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Release proposal: v6.2.1 #7108
Changes from 1 commit
1d6c17e6d1527bceeae4b559c258d629f26ee1e5a2dce64137a6d2ada568ad4cea177726805c91370fdc1de25f294f8255341eaf26806ebbedb29b86eed6a36032dc2efcbafaa63c556347abf3be5386eaf096f1916e6948c434e683dab808141c2fbe241c301f010ff264749d740624577e1320eb25cb1b712312d84ac716159c2a6ca5e5bddf4130c62bd13f9d72489b25fa0bc178475adc6aad895f4c1bf3fc897934a74582aa1c7b6e22273971688f5639196d8749af20c635357937736f427c17ce59666502d67741e8c9f0162593bd1e99643477e61d62690aa04697a5bd4454f715b48cd5f7f2458cd11c925fc36d49b49efa94a915b47acc38f56036ea43d15c154a8a4ed7df1def098e8c0dbad34343f8f5264926e22e2d962fbac1d5f2e29b28a2ce2d5be7d3f575b1f58ed71c91745701599f1c773dabb063a51d1960520369d226b96664fcba2b4fb95e95b7560adb2d611389a4f8c634d7ccbc78ce0240ab4f2a55f5c7da21d313204316871f2000072965274dbbf3b3e8a7e68fcc2af79f31a5ece3920d1a4705f67b2949a827b3eb1067140758fadfba30899bf4724a5a1e82364415567c932c2289586081e765f5cad04b1908b7f1469b98528ca04bae7adb08414965374afd2cf3a53253db33588c76cf3e3eeb08f13612ab3609b52d838614907e8309dba0ae512a1965e4412a3d01c81b6f8ceee56b45ca7cf55c0b3ee7b03be8a0329fe1fb4805afb91bc068880c4329aae5a7ceceff73c7565d4caf1a8c316f0d8b332cc43ad270706cb8de85527a8a498270c6a320a0136ed4a215f6224756ec809fa1b19f6558ec0f0003fdb3d2a7b28468e69e119dee1865d55b736a178f30827d0eb04cc6a1828b734283e6d537e577574da3e1e5779ed20d08fc44333fda38a332395f8d59145a6b98f623a36444567bfd7b24f3ae42193e150f050368121e3135bf3afce2184e77108523e98e497b5990a7f6f3f5af8e6f8b2a9b90a6b7ca0a2a5e3edd856638dbc2efe2ea287fcb5949f83909209ae1bf833ae9f140f17a287c383270bd8f4c72d46921fece2f1bcc226b30d078216a3cdded02b9e4ac8081e26b82257e54b8c289df3518ab979ad1720a258e5f154486b5e93c93c2c4c814b3ba3b23cd48b2c7d46cb2ef352132d346a62bb01c12567371be9c3bfbe8adea120f6cf0f6281a9f9699c05a14d3a7596439fbf8b720c4e93198ec7b0d06File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
There has been occasional nits for spacing in object literals in PRs but the project does not lint for it and it is not always handled consistently in the existing code, even on adjacent lines of a file. This change enables a linting rule requiring no space between the key and the colon, and requiring at least one space (but allowing for more so property values can be lined up if desired) between the colon and the value. This appears to be the most common style used in the current code base. Example code the complies with lint rule: myObj = { foo: 'bar' }; Examples that do not comply with the lint rule: myObj = { foo : 'bar' }; myObj = { foo:'bar' }; PR-URL: #6592 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net>Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing
Uh oh!
There was an error while loading. Please reload this page.