eslint: allow irregular whitespace in template literals
| @@ -92,6 +92,7 @@ module.exports = { | ||
| 92 | 92 | 'no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }], |
| 93 | 93 | 'no-cond-assign': 'error', |
| 94 | 94 | 'no-unneeded-ternary': 'error', |
| 95 | + 'no-irregular-whitespace': ['error', { skipStrings: true, skipTemplates: true }], | |
| 95 | 96 | |
| 96 | 97 | // These rules should eventually be enabled. |
| 97 | 98 | 'no-async-promise-executor': 'off', |