eslint: Enable space-infix-ops rule.

More about rule at  https://eslint.org/docs/rules/space-infix-ops
This commit is contained in:
Shubham Dhama
2018-06-05 00:43:07 +05:30
parent c6738889a9
commit cc03f9fb8f
46 changed files with 120 additions and 120 deletions

View File

@@ -47,7 +47,7 @@ function create_bot(full_name, short_name, bot_avatar_file, stream_name,
formData.append('csrfmiddlewaretoken', csrf_token);
formData.append('full_name', full_name);
formData.append('short_name', short_name);
formData.append('file-'+0, bot_avatar_file);
formData.append('file-' + 0, bot_avatar_file);
channel.post({
url: '/json/bots',
data: formData,