Skip to content

Commit

Permalink
Remove define formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
darkeris345 committed Jan 17, 2025
1 parent 40a3ffa commit 554dcc6
Show file tree
Hide file tree
Showing 40 changed files with 0 additions and 372 deletions.
6 changes: 0 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,6 @@
],
"description": "Should end dot be located on same or new line after ASSIGN statement?"
},
"AblFormatter.defineFormatting": {
"order": 200,
"type": "boolean",
"default": "true",
"description": "Enable DEFINE formatting"
},
"AblFormatter.findFormatting": {
"order": 300,
"type": "boolean",
Expand Down
8 changes: 0 additions & 8 deletions resources/functionalTests/define/10query/input.p

This file was deleted.

8 changes: 0 additions & 8 deletions resources/functionalTests/define/10query/target.p

This file was deleted.

9 changes: 0 additions & 9 deletions resources/functionalTests/define/11returnParameter/input.p

This file was deleted.

9 changes: 0 additions & 9 deletions resources/functionalTests/define/11returnParameter/target.p

This file was deleted.

6 changes: 0 additions & 6 deletions resources/functionalTests/define/12stream/input.p

This file was deleted.

6 changes: 0 additions & 6 deletions resources/functionalTests/define/12stream/target.p

This file was deleted.

11 changes: 0 additions & 11 deletions resources/functionalTests/define/13tempTableAndDataset/input.p

This file was deleted.

11 changes: 0 additions & 11 deletions resources/functionalTests/define/13tempTableAndDataset/target.p

This file was deleted.

6 changes: 0 additions & 6 deletions resources/functionalTests/define/14upperCaseFormating/input.p

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions resources/functionalTests/define/15workFile/input.p

This file was deleted.

6 changes: 0 additions & 6 deletions resources/functionalTests/define/15workFile/target.p

This file was deleted.

13 changes: 0 additions & 13 deletions resources/functionalTests/define/16inClass/input.p

This file was deleted.

13 changes: 0 additions & 13 deletions resources/functionalTests/define/16inClass/target.p

This file was deleted.

9 changes: 0 additions & 9 deletions resources/functionalTests/define/17inFunction/input.p

This file was deleted.

9 changes: 0 additions & 9 deletions resources/functionalTests/define/17inFunction/target.p

This file was deleted.

8 changes: 0 additions & 8 deletions resources/functionalTests/define/1buffer/input.p

This file was deleted.

8 changes: 0 additions & 8 deletions resources/functionalTests/define/1buffer/target.p

This file was deleted.

8 changes: 0 additions & 8 deletions resources/functionalTests/define/2button/input.p

This file was deleted.

8 changes: 0 additions & 8 deletions resources/functionalTests/define/2button/target.p

This file was deleted.

6 changes: 0 additions & 6 deletions resources/functionalTests/define/3formattingFalse/input.p

This file was deleted.

6 changes: 0 additions & 6 deletions resources/functionalTests/define/3formattingFalse/target.p

This file was deleted.

13 changes: 0 additions & 13 deletions resources/functionalTests/define/4inLoop/input.p

This file was deleted.

13 changes: 0 additions & 13 deletions resources/functionalTests/define/4inLoop/target.p

This file was deleted.

8 changes: 0 additions & 8 deletions resources/functionalTests/define/5inProcedure/input.p

This file was deleted.

8 changes: 0 additions & 8 deletions resources/functionalTests/define/5inProcedure/target.p

This file was deleted.

This file was deleted.

This file was deleted.

9 changes: 0 additions & 9 deletions resources/functionalTests/define/7inputParameter/input.p

This file was deleted.

9 changes: 0 additions & 9 deletions resources/functionalTests/define/7inputParameter/target.p

This file was deleted.

6 changes: 0 additions & 6 deletions resources/functionalTests/define/8mixedCaseInputs/input.p

This file was deleted.

6 changes: 0 additions & 6 deletions resources/functionalTests/define/8mixedCaseInputs/target.p

This file was deleted.

9 changes: 0 additions & 9 deletions resources/functionalTests/define/9outputParameter/input.p

This file was deleted.

9 changes: 0 additions & 9 deletions resources/functionalTests/define/9outputParameter/target.p

This file was deleted.

1 change: 0 additions & 1 deletion resources/samples/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
{
"abl.completion.upperCase": false,
"AblFormatter.assignFormatting": true,
"AblFormatter.defineFormatting": false,
"AblFormatter.findFormatting": false,
"AblFormatter.forFormatting": false,
"AblFormatter.caseFormatting": false,
Expand Down
1 change: 0 additions & 1 deletion resources/stabilityTests/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"AblFormatter.defineFormatting": false,
"AblFormatter.temptableFormatting": true,
"AblFormatter.usingFormatting": true,
"AblFormatter.bodyFormatting": true,
Expand Down
2 changes: 0 additions & 2 deletions src/v2/formatterFramework/enableFormatterDecorators.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { AssignFormatter } from "../formatters/assign/AssignFormatter";
import { BlockFormater } from "../formatters/block/BlockFormatter";
import { IfFormatter } from "../formatters/if/IfFormatter";
import { DefineFormatter } from "../formatters/define/DefineFormatter";
import { UsingFormatter } from "../formatters/using/UsingFormatter";
import { CaseFormatter } from "../formatters/case/CaseFormatter";
import { FindFormatter } from "../formatters/find/FindFormatter";
Expand All @@ -21,7 +20,6 @@ export function enableFormatterDecorators(): void {
BlockFormater;
BodyFormatter;
IfFormatter;
DefineFormatter;
UsingFormatter;
CaseFormatter;
FindFormatter;
Expand Down
Loading

0 comments on commit 554dcc6

Please sign in to comment.