Skip to content

Commit 18af49e

Browse files
authored
Clean up TODO and add some comments
Updated comments to clarify code origin and simplifications.
1 parent 1d11cf3 commit 18af49e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Src/CSharpier.Cli/DotIgnore/IgnoreList.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
using System.Collections.Concurrent;
1+
// based on the code at https://github.com/markashleybell/MAB.DotIgnore
2+
// simplified to remove unneeded features and fixed a couple of edgecases that were not handled correctly
3+
4+
using System.Collections.Concurrent;
25
using System.IO.Abstractions;
36

47
namespace CSharpier.Cli.DotIgnore;
58

6-
// TODO #1768 performance test this to see how it compares to the previous regex version
7-
// TODO #1768 add link back to source repo
89
internal class IgnoreList(string basePath)
910
{
1011
private static readonly string[] alwaysIgnoredText =

0 commit comments

Comments
 (0)