+
Skip to content

Remove UTF8 BOM #1197

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ indent_style = space
[*.{cs,csx,vb,vbx}]
indent_size = 4
insert_final_newline = true
charset = utf-8-bom

# XAML project files
[*.xaml]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis;

namespace GObject.Integration.SourceGenerator;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis;

namespace GObject.Integration.SourceGenerator;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Globalization;
using System.Globalization;
using System.Text;
using Microsoft.CodeAnalysis;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;

namespace GObject.Integration.SourceGenerator;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace GObject.Integration.SourceGenerator;
namespace GObject.Integration.SourceGenerator;

internal sealed record TypeData(
string NameGenericArguments,
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Aliases.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Generator;

namespace Generator;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Bitfields.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Generator;

namespace Generator;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Callbacks.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Generator;

namespace Generator;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Classes.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Generator;

namespace Generator;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Configuration.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Generator;
namespace Generator;

public static class Configuration
{
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Constants.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Generator;

namespace Generator;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Enumerations.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Generator;

namespace Generator;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Generator.Fixer.Record;
namespace Generator.Fixer.Record;

/// <summary>
/// The alias is added manually in GLib (as GObject.Type) as GLib needs a GType.
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Fixer/Aliases.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Fixer.Record;

namespace Generator.Fixer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Linq;
using System.Linq;
using Generator.Model;

namespace Generator.Fixer.Bitfield;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Fixer/Bitfields.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Fixer.Bitfield;

namespace Generator.Fixer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Fixer.Class;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Fixer.Class;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Fixer.Class;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Linq;
using System.Linq;
using Generator.Model;

namespace Generator.Fixer.Class;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Fixer.Class;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Fixer.Class;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Linq;
using System.Linq;

namespace Generator.Fixer.Class;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Linq;
using System.Linq;
using GirModel;

namespace Generator.Fixer.Class;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Fixer/Classes.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Fixer.Class;

namespace Generator.Fixer;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Fixer/Fixer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Generator.Fixer;
namespace Generator.Fixer;

public interface Fixer<in T>
{
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Fixer/Namespace.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Fixer.Ns;

namespace Generator.Fixer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Fixer.Record;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Fixer.Record;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using GirModel;
using GirModel;
using Method = Generator.Model.Method;

namespace Generator.Fixer.Record;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Fixer.Record;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Fixer.Record;

Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Fixer/Records.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Fixer.Record;

namespace Generator.Fixer;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Framework.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Generator;

namespace Generator;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Functions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Generator.Generator;

namespace Generator;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Generator/CodeUnit.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
namespace Generator.Generator;
namespace Generator.Generator;

internal record CodeUnit(string Project, string Name, string Source, bool IsInternal);
2 changes: 1 addition & 1 deletion src/Generation/Generator/Generator/Generator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Generator.Generator;
namespace Generator.Generator;

internal interface Generator<T>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Generator/Internal/ClassHandle.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Generator/Internal/ClassStruct.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using Generator.Model;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using Generator.Model;
Expand Down
2 changes: 1 addition & 1 deletion src/Generation/Generator/Generator/Internal/TypedRecord.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Linq;
using System.Linq;
using Generator.Model;

namespace Generator.Generator.Internal;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Generator.Model;
using Generator.Model;

namespace Generator.Generator.Internal;

Expand Down
Loading
Loading
点击 这是indexloc提供的php浏览器服务,不要输入任何密码和下载