mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
lint: Ban two spaces after comma in JS code.
We exclude the frontend tests, mostly because the lint rule isn't that precise, and the test code has some sample user input that's a bit funny.
This commit is contained in:
@@ -8,7 +8,7 @@ var exports = {};
|
||||
exports.encodeHashComponent = function (str) {
|
||||
return encodeURIComponent(str)
|
||||
.replace(/\./g, '%2E')
|
||||
.replace(/%/g, '.');
|
||||
.replace(/%/g, '.');
|
||||
};
|
||||
|
||||
exports.encode_operand = function (operator, operand) {
|
||||
|
||||
Reference in New Issue
Block a user