Skip to content

triple-quote-indent

Triple quoted strings must all be at least indented to the same level as closing """.

const a = """
one
two
""";
const a = """
one
two
""";

This would result in the following string "one\n two\n".