From 4119b8c82b000ff3c97dbfcd55718d8305a663d4 Mon Sep 17 00:00:00 2001 From: Alexandros Kritikos Date: Sun, 15 Feb 2026 15:21:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Updates=20StyleCop=20configurati?= =?UTF-8?q?on=20to=20place=20using=20directives=20outside=20namespace=20an?= =?UTF-8?q?d=20removes=20delegate=20from=20top-level=20types?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- stylecop.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stylecop.json b/stylecop.json index 62d4382..6f8a860 100644 --- a/stylecop.json +++ b/stylecop.json @@ -6,7 +6,7 @@ "indentationSize": 2 }, "orderingRules": { - "usingDirectivesPlacement": "insideNamespace", + "usingDirectivesPlacement": "outsideNamespace", "systemUsingDirectivesFirst": true, "blankLinesBetweenUsingGroups": "require", "elementOrder": [ @@ -22,7 +22,6 @@ "class", "interface", "struct", - "delegate", "enum" ] },