mirror of https://github.com/zulip/zulip.git
eslint: Fix unicorn/prefer-includes.
https://github.com/sindresorhus/eslint-plugin-unicorn/blob/master/docs/rules/prefer-includes.md Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
b178fc6069
commit
fd11c9c666
|
@ -1,5 +1,7 @@
|
|||
"use strict";
|
||||
|
||||
const path = require("path");
|
||||
|
||||
const _ = require("lodash");
|
||||
|
||||
const requires = [];
|
||||
|
@ -50,11 +52,10 @@ exports.clear_zulip_refs = function () {
|
|||
correctly, but it will fail if we
|
||||
run it standalone.
|
||||
*/
|
||||
const staticPath = path.resolve(__dirname, "../../static") + path.sep;
|
||||
_.each(require.cache, (_, fn) => {
|
||||
if (fn.indexOf("static/") >= 0) {
|
||||
if (fn.indexOf("static/templates") < 0) {
|
||||
delete require.cache[fn];
|
||||
}
|
||||
if (fn.startsWith(staticPath) && !fn.startsWith(staticPath + "templates" + path.sep)) {
|
||||
delete require.cache[fn];
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
|
@ -85,7 +85,7 @@ exports.set_up_muted_topics_ui = function () {
|
|||
filter: {
|
||||
element: $search_input,
|
||||
predicate(item, value) {
|
||||
return item.topic.toLocaleLowerCase().indexOf(value) >= 0;
|
||||
return item.topic.toLocaleLowerCase().includes(value);
|
||||
},
|
||||
onupdate() {
|
||||
ui.reset_scrollbar(muted_topics_table.closest(".progressive-table-wrapper"));
|
||||
|
|
|
@ -34,7 +34,7 @@ exports.set_up = function (input, pills, opts) {
|
|||
|
||||
if (include_streams(query)) {
|
||||
query = query.trim().slice(1);
|
||||
return item.name.toLowerCase().indexOf(query) !== -1;
|
||||
return item.name.toLowerCase().includes(query);
|
||||
}
|
||||
|
||||
if (!settings_data.show_email()) {
|
||||
|
|
Loading…
Reference in New Issue