You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
What steps will reproduce the problem?
1. write javascript code like
for exameple, if you `fixjsstyle` some code such as
```javascript
var a = 1,
b = 3,
c = {},
d = function() {},
e = "asdf";
the result will look like this.
var a = function() {},
b = "asdf";
2. run fixjsstyle
expected result:
var a = function() {},
b = 'asdf';
but I get
var a = function() {};,
b = 'asdf';
due to that semicolon before comma(,) the result is wrong.
linux closure-linter 2.2.6
i attach a patch here.
Thank you
Original issue reported on code.google.com by `[email protected]` on 19 Jan 2015 at 9:40
Attachments:
* [ecmalintrules.patch](https://storage.googleapis.com/google-code-attachments/closure-linter/issue-87/comment-0/ecmalintrules.patch)
The text was updated successfully, but these errors were encountered:
the result will look like this.
var a = function() {},
b = "asdf";
2. run fixjsstyle
expected result:
var a = function() {},
b = 'asdf';
but I get
var a = function() {};,
b = 'asdf';
due to that semicolon before comma(,) the result is wrong.
linux closure-linter 2.2.6
i attach a patch here.
Thank you
The text was updated successfully, but these errors were encountered: