We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f42e3 commit bd8c9d7Copy full SHA for bd8c9d7
src/features/DocumentFormatter.ts
@@ -13,7 +13,6 @@ export namespace ScriptFileMarkersRequest {
13
// TODO move some of the common interface to a separate file?
14
interface ScriptFileMarkersRequestParams {
15
filePath: string;
16
- rules: string[];
17
settings: string;
18
}
19
@@ -79,7 +78,6 @@ class PSDocumentFormattingEditProvider implements vscode.DocumentFormattingEditP
79
78
ScriptFileMarkersRequest.type,
80
{
81
filePath: document.fileName,
82
- rules: [rule],
83
settings: this.getSettings(rule)
84
})
85
.then((result: ScriptFileMarkersRequestResultParams) => {
0 commit comments