Skip to content

Commit d849e99

Browse files
committed
style: solution-wide Rider Reformat & Cleanup Code pass
Whitespace/formatting normalization across the codebase under the shared .editorconfig (attributes one-per-line held: 0 re-collapsed). No logic changes; compiles clean, targeted EditMode gate green.
1 parent 8a7a658 commit d849e99

724 files changed

Lines changed: 1624 additions & 1360 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Assets/CoreAI.Demos/ModdableUnits/Scripts/UnitForgeLuaBindings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ private bool Define(string name, string team, double hp, double damage, double s
8383
}
8484
}
8585
}
86-
#endif
86+
#endif

Assets/CoreAI.Demos/Shared/Scripts/CoreAiDemoScope.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ public static ILuaModRuntime ResolveModsRuntime(CoreAILifetimeScope coreAiScope)
4040
}
4141
}
4242
}
43-
#endif
43+
#endif

Assets/CoreAI.Demos/Skills/Scripts/SkillsDemoController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ private void OnGUI()
139139
GUILayout.EndArea();
140140
}
141141
}
142-
}
142+
}

Assets/CoreAI.Demos/WebGlLuaSelfTest/WebGlLuaSelfTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,4 +146,4 @@ private void OnGUI()
146146
}
147147
}
148148
}
149-
#endif
149+
#endif

Assets/CoreAI/Runtime/Core/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
[assembly: InternalsVisibleTo("CoreAI.Tests")]
44
[assembly: InternalsVisibleTo("CoreAI.Mods")]
5-
[assembly: InternalsVisibleTo("CoreAI.Mods.Tests")]
5+
[assembly: InternalsVisibleTo("CoreAI.Mods.Tests")]

Assets/CoreAI/Runtime/Core/Audit/AuditContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ public static void Cleanup(string traceId)
4242
}
4343
}
4444
}
45-
}
45+
}

Assets/CoreAI/Runtime/Core/Audit/AuditEntry.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,13 @@ public AuditEntry(
8787

8888
[JsonIgnore]
8989
public string PrevHash { get; }
90+
9091
[JsonIgnore]
9192
public string Hash { get; }
9293

9394
[JsonProperty("prevHash")]
9495
private string PrevHashForSerialization => PrevHash;
96+
9597
[JsonProperty("hash")]
9698
private string HashForSerialization => Hash;
9799

Assets/CoreAI/Runtime/Core/Audit/AuditHash.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ private static char HexChar(int nibble)
4141
return (char)(nibble < 10 ? '0' + nibble : 'a' + nibble - 10);
4242
}
4343
}
44-
}
44+
}

Assets/CoreAI/Runtime/Core/Audit/AuditLogVerifier.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,4 +218,4 @@ private static AuditEntry ToEntry(JObject obj)
218218
ts);
219219
}
220220
}
221-
}
221+
}

Assets/CoreAI/Runtime/Core/Audit/IAuditLog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ public void Record(AuditEntry entry)
1515
{
1616
}
1717
}
18-
}
18+
}

0 commit comments

Comments
 (0)