http://eslint.org/docs/rules/template-tag-spacing ``` let hello = func`Hello world` // ok let hello = func `Hello world` // avoid ``` ``` { "template-tag-spacing": ["error", "never"] } ```