From b7169f087b8b77f43118daa572c06247517aefbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olav=20R=C3=B8nnestad=20Birkeland?= <6450056+o-l-a-v@users.noreply.github.com> Date: Sun, 1 Mar 2026 12:07:59 +0100 Subject: [PATCH] feat: added new code formatting preset OTPS --- package.json | 1 + src/settings.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/package.json b/package.json index 1d23a958ec..1c93b80114 100644 --- a/package.json +++ b/package.json @@ -777,6 +777,7 @@ "Custom", "Allman", "OTBS", + "OTPS", "Stroustrup" ], "markdownEnumDescriptions": [ diff --git a/src/settings.ts b/src/settings.ts index 9664c10cf1..5e74e6393f 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -46,6 +46,7 @@ export enum CodeFormattingPreset { Custom = "Custom", Allman = "Allman", OTBS = "OTBS", + OTPS = "OTPS", Stroustrup = "Stroustrup", }