Tagged Questions
2
votes
2answers
225 views
Aptana complaining about JavaScript semicolons
Why does Aptana with either validator (Mozilla or JSlint) complain about this code:
var collectionOfValues = {
key0 : value0;
key1 : value1;
key2 : value2;
};
It works fine with , but ...
3
votes
4answers
1k views
Utility to auto insert semicolons in javascript source code?
The question is pretty self explanatory.
I'm working with code from multiple developers. Some of whom are inconsistent in their use of semicolons, and I just want them after every line for ...