Updating project to correct the following errors:

1. Using directive should appear within a namespace declaration
2. Use trailing comma in multi-line initializers
This commit is contained in:
2026-02-19 11:06:43 -05:00
parent 1c6730e2ad
commit 036953f3ff
423 changed files with 9369 additions and 3643 deletions
@@ -2,6 +2,8 @@
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
namespace Jellyfin.CodeAnalysis;
using System;
using System.Collections.Immutable;
using System.Linq;
@@ -10,8 +12,6 @@ using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Diagnostics;
namespace Jellyfin.CodeAnalysis;
/// <summary>
/// Analyzer to detect sync disposal of async-created IAsyncDisposable objects.
/// </summary>