in reply to Detecting Dangling Commas in JavaScript

See also: http://www.javascriptlint.com/.

--MidLifeXis

  • Comment on Re: Detecting Dangling Commas in JavaScript

Replies are listed 'Best First'.
Re^2: Detecting Dangling Commas in JavaScript
by wink (Scribe) on Nov 01, 2010 at 18:11 UTC
    Lint is great but it only detects problems, it doesn't fix them to my knowledge. When I was faced with correcting 300 of these problems, I didn't want to do it manually. For me, it was also about discovering a way to effectively use lookarounds to detect whether something was inside a C-style comment or not.