eslint: allow irregular whitespace in template literals

8508c4bf9bb7667e1cf6b862af8aba823e48963a

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -0Showing whitespace changes
.eslintrc.cjs+1 -0
@@ -92,6 +92,7 @@ module.exports = {
9292 'no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
9393 'no-cond-assign': 'error',
9494 'no-unneeded-ternary': 'error',
95+ 'no-irregular-whitespace': ['error', { skipStrings: true, skipTemplates: true }],
9596
9697 // These rules should eventually be enabled.
9798 'no-async-promise-executor': 'off',