ignore icon indicating copy to clipboard operation
ignore copied to clipboard

.gitignore based parser implemented in C# according to the .gitignore spec 2.29.2.

Results 10 ignore issues
Sort by recently updated
recently updated
newest added

Thanks for the awesome library, I've been using this for years! I'm using Ignore with .gitignore files that I load into it, and I need my code to support nested...

Windows allows either `/` or `\` for path chars, however if a rule is ".vs/*" but the path passed in is ".vs\myfile.txt" it does not say it should be ignored....

Pr https://github.com/goelhardik/ignore/pull/43/files displays the error

- Add target for `net8.0` and update to C# 12. - Use the Regex source generator via `[GeneratedRegex]` when targeting `net8.0`. - Bump the checkout and setup-dotnet actions to v4...

Large

The library hasn't targeted `netstandard2.0` since #14.

Extra Small

Have the NuGet version badge link to the package in NuGet.org.

Extra Small

Fix the NuGet package not having any description. ![image](https://github.com/goelhardik/ignore/assets/1439341/73b8f8e7-b049-413c-8a30-592e1faf3927)

Extra Small

Hello, this class seems awesome and I apologize in advance if my question seems stupid. I have a repo on the disk, and it has an existing `.gitignore` file that...

Example: public bool IsMatch(ReadOnlySpan input) { return parsedRegex != null && parsedRegex.IsMatch(input); } Just add that signature in addition to the one taking string. This reduces my time of scanning...