Uh oh!
There was an error while loading. Please reload this page.
Backport of #5778 - #5960
Conversation
MylesBorins
commented
Mar 30, 2016
@Trott can you keep the original review data please 😄 |
Trott
commented
Mar 30, 2016
Original review metadata restored. Guess you'll want to update the PR number, eh? I left it as the old one. Wasn't sure what your procedure is. Just pointing out in case I guessed wrong. |
MylesBorins
commented
Mar 30, 2016
I usually leave the old one so that everything sync's up with branch diff |
jasnell
commented
Apr 1, 2016
@Trott .. looks like your branch needs to be rebased to clear out the extraneous commits here. |
Trott
commented
Apr 1, 2016
@jasnell rebased and force pushed. There still seems to be one extraneous commit. ??? |
MylesBorins
commented
Apr 1, 2016
@Trott can you rebase out e42bd4a |
Trott
commented
Apr 1, 2016
@thealphanerd OK, done! |
MylesBorins
commented
Apr 2, 2016
@Trott this commit is blowing up the linter. Look like there is still a whole bunch of non template literal string concatenation happening in v4.x... 236 errors in total. This amount of churn does make me a bit uneasy |
jasnell
commented
Apr 3, 2016
Yeah, I'd say let's hold off on this given that high number of failures. |
Trott
commented
Apr 3, 2016
Heh, that's because I modified the wrong |
Convert string concatenation to template literals. Enforce with lint rule. PR-URL: nodejs#5778 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Trott
commented
Apr 3, 2016
OK! Linter passes now. Sheesh. Sorry about that. |
MylesBorins
commented
Apr 4, 2016
landed in 4f683ab |
Pull Request check-list
Please make sure to review and check all of these items:
make -j8 test(UNIX) orvcbuild test nosign(Windows) pass withthis change (including linting)?
test (or a benchmark) included?
existing APIs, or introduces new ones)?
NOTE: these things are not required to open a PR and can be done
afterwards / while the PR is open.
Affected core subsystem(s)
Please provide affected core subsystem(s) (like buffer, cluster, crypto, etc)
Description of change
Please provide a description of the change here.
Convert string concatenation to template literals. Enforce with lint
rule.