Using Visual Studio 2012, Resharper 7.0.1
If I'm editing JavaScript, and I type the following (| = cursor position):
this.myFunction = function() {|
.. Resharper will add the closing brace for me:
this.myFunction = function() {|}
... but I want it to also add a semicolon afterwards:
this.myFunction = function() {|};