Skip to content

Commit

Permalink
Stop protecting .github and .vscode from changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ejball committed Feb 16, 2024
1 parent 20f998a commit bbe2a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FindReplaceCode/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ private static string ToSnakeCase(string value, char separator)

private const string c_fullUsageMessage = "Usage: FindReplaceCode.exe <folder-path> <find> <replace> [<find> <replace> ...]";

private static readonly Regex s_hiddenDirectoryRegex = new Regex(@"[\\/]\..*[\\/]", RegexOptions.CultureInvariant);
private static readonly Regex s_hiddenDirectoryRegex = new Regex(@"[\\/]\.git[\\/]", RegexOptions.CultureInvariant);
private static readonly Regex s_word = new Regex("[A-Z]([A-Z]*(?![a-z])|[a-z]*)|[a-z]+|[0-9]+", RegexOptions.CultureInvariant | RegexOptions.ExplicitCapture);

private readonly string m_folderPath;
Expand Down

0 comments on commit bbe2a64

Please sign in to comment.