mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 15:03:34 +00:00
This is preparation for enabling an eslint indentation configuration. 90% of these changes are just fixes for indentation errors that have snuck into the codebase over the years; the others are more significant reformatting to make eslint happy (that are not otherwise actually improvements). The one area that we do not attempt to work on here is the "switch/case" indentation.
16 lines
470 B
JavaScript
16 lines
470 B
JavaScript
// This file is being eliminated as part of the general purge of
|
|
// global variables from Zulip (everything is being moved into
|
|
// modules). Please don't add things here.
|
|
|
|
var home_msg_list = new message_list.MessageList(
|
|
'zhome',
|
|
new Filter([{operator: "in",
|
|
operand: "home"}]),
|
|
{muting_enabled: true}
|
|
);
|
|
var current_msg_list = home_msg_list;
|
|
|
|
if (typeof module !== 'undefined') {
|
|
module.exports.current_msg_list = current_msg_list;
|
|
}
|