Nudge forward style checks a la eslint-config-standard (#1082)

Because I despise nitpicking stuff like indentation and spacing in pull request comments, I'd like to nudge forward our automated style checking, at least for new files being added.

I don't want to totally rewrite server.js just to get automated style checking… the blame tracking is just too useful. So let's it's just take care of that when we start splitting it out.

More discussion in #948.
This commit is contained in:
Paul Melnikow
2017-10-01 21:09:43 -04:00
committed by GitHub
parent 820b72c4c4
commit f271b82670
34 changed files with 337 additions and 279 deletions

View File

@@ -1,3 +1,5 @@
'use strict';
// Zero-pad a number in a string.
// eg. 4 becomes 04 but 17 stays 17.
function pad(string) {