triple-quote-indent
Triple quoted strings must all be at least indented to the same level as closing """.
❌ Incorrect
Section titled “❌ Incorrect”const a = """one two """;✅ Correct
Section titled “✅ Correct”const a = """ one two """;This would result in the following string "one\n two\n".