We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d11cf3 commit 18af49eCopy full SHA for 18af49e
Src/CSharpier.Cli/DotIgnore/IgnoreList.cs
@@ -1,10 +1,11 @@
1
-using System.Collections.Concurrent;
+// 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;
5
using System.IO.Abstractions;
6
7
namespace CSharpier.Cli.DotIgnore;
8
-// TODO #1768 performance test this to see how it compares to the previous regex version
-// TODO #1768 add link back to source repo
9
internal class IgnoreList(string basePath)
10
{
11
private static readonly string[] alwaysIgnoredText =
0 commit comments