eslint: Enable no-extra-parens rule.

Following sub-configuration is disabled:
                "nestedBinaryExpressions": false,
This commit is contained in:
Shubham Dhama
2018-06-06 21:49:09 +05:30
committed by showell
parent c14d17b35b
commit dcb6254a4e
62 changed files with 141 additions and 136 deletions

View File

@@ -191,8 +191,8 @@ function create_stream() {
created_stream = stream_name;
var announce = (!!page_params.notifications_stream &&
$('#announce-new-stream input').prop('checked'));
var announce = !!page_params.notifications_stream &&
$('#announce-new-stream input').prop('checked');
loading.make_indicator($('#stream_creating_indicator'), {text: i18n.t('Creating stream...')});