mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
eslint: Enable comma-dangle for functions.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
a79322bc94
commit
e014ea966a
@@ -126,7 +126,7 @@ exports.update = (replace_content, find, new_dom, old_dom) => {
|
||||
const same_structure = exports.eq_array(
|
||||
new_opts.keyed_nodes,
|
||||
old_opts.keyed_nodes,
|
||||
(a, b) => a.key === b.key
|
||||
(a, b) => a.key === b.key,
|
||||
);
|
||||
|
||||
if (!same_structure) {
|
||||
@@ -161,7 +161,7 @@ exports.update = (replace_content, find, new_dom, old_dom) => {
|
||||
exports.update_attrs(
|
||||
find(),
|
||||
new_opts.attrs,
|
||||
old_opts.attrs
|
||||
old_opts.attrs,
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user