mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
js: Remove inner spacing from object literals.
We’re configuring Prettier with bracketSpacing: false. Generated by ESLint. Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
a20c12366f
commit
883e2fd325
@@ -335,7 +335,7 @@ run_test("marked", () => {
|
||||
{input: "\ud83d\udca9",
|
||||
expected: '<p><span aria-label="poop" class="emoji emoji-1f4a9" role="img" title="poop">:poop:</span></p>'},
|
||||
{input: "\u{1f6b2}",
|
||||
expected: "<p>\u{1f6b2}</p>" },
|
||||
expected: "<p>\u{1f6b2}</p>"},
|
||||
{input: "Silent mention: @_**Cordelia Lear**",
|
||||
expected: '<p>Silent mention: <span class="user-mention silent" data-user-id="101">Cordelia Lear</span></p>'},
|
||||
{input: "> Mention in quote: @**Cordelia Lear**\n\nMention outside quote: @**Cordelia Lear**",
|
||||
@@ -583,7 +583,7 @@ run_test("python_to_js_filter", () => {
|
||||
run_test("katex_throws_unexpected_exceptions", () => {
|
||||
katex.renderToString = function () { throw new Error("some-exception"); };
|
||||
blueslip.expect("error", "Error: some-exception");
|
||||
const message = { raw_content: "$$a$$" };
|
||||
const message = {raw_content: "$$a$$"};
|
||||
markdown.apply_markdown(message);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user