fix(prettier)

This commit is contained in:
Jason Poon 2017-11-11 20:25:50 -05:00
parent 72067735ce
commit 2059ba86f5
3 changed files with 4 additions and 3 deletions

View File

@ -37,7 +37,6 @@ const packagejson: {
};
} = require('../package.json'); // out/../package.json
let extensionContext: vscode.ExtensionContext;
/**

View File

@ -370,7 +370,9 @@ function overlapSetting(args: {
codeValue = args.codeValueMapping[value];
}
await vscode.workspace.getConfiguration('editor').update(args.codeName, codeValue, vscode.ConfigurationTarget.Global);
await vscode.workspace
.getConfiguration('editor')
.update(args.codeName, codeValue, vscode.ConfigurationTarget.Global);
}, 'config');
},
enumerable: true,

View File

@ -28,4 +28,4 @@ export class EditorIdentity {
public toString() {
return this.fileName + this.viewColumn;
}
}
}