I think auto format (Ctrl+K,D) the following code
```
var a = require('a');
a.mount('/', [
pipe.static({ root: 'b' }),
pipe.proxy({
'a': 1
})
]);
```
should yield the following style (when open as standard js file)
```
var a = require('a');
a.mount('/', [
pipe.static({ root: 'b' }),
pipe.proxy({
'a': 1
})
]);
```
but NTVS yield
```
var a = require('a');
a.mount('/', [
pipe.static({ root: 'b' }),
pipe.proxy({
'a': 1
})
]);
```
```
var a = require('a');
a.mount('/', [
pipe.static({ root: 'b' }),
pipe.proxy({
'a': 1
})
]);
```
should yield the following style (when open as standard js file)
```
var a = require('a');
a.mount('/', [
pipe.static({ root: 'b' }),
pipe.proxy({
'a': 1
})
]);
```
but NTVS yield
```
var a = require('a');
a.mount('/', [
pipe.static({ root: 'b' }),
pipe.proxy({
'a': 1
})
]);
```