Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-hodgson authored Sep 12, 2023
1 parent 0ec7529 commit 7009f68
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion Pidgin.Examples/Json/JsonParser.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Collections.Generic;
using System.Collections.Immutable;

using static Pidgin.Parser;
using static Pidgin.Parser<char>;

Check failure on line 4 in Pidgin.Examples/Json/JsonParser.cs

View workflow job for this annotation

GitHub Actions / build / build

The using static directive for 'Pidgin.Parser<char>' should appear after the using static directive for 'Pidgin.Parser'

Expand Down
1 change: 0 additions & 1 deletion Pidgin.Examples/Xml/XmlParser.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;

using static Pidgin.Parser;
using static Pidgin.Parser<char>;

Check failure on line 5 in Pidgin.Examples/Xml/XmlParser.cs

View workflow job for this annotation

GitHub Actions / build / build

The using static directive for 'Pidgin.Parser<char>' should appear after the using static directive for 'Pidgin.Parser'

Expand Down
2 changes: 0 additions & 2 deletions Pidgin.Tests/CommentParserTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using Pidgin.Comment;

using Xunit;

using static Pidgin.Parser;
using static Pidgin.Parser<char>;

Check failure on line 5 in Pidgin.Tests/CommentParserTests.cs

View workflow job for this annotation

GitHub Actions / build / build

The using static directive for 'Pidgin.Parser<char>' should appear after the using static directive for 'Pidgin.Parser'
Expand Down
3 changes: 0 additions & 3 deletions Pidgin.Tests/ExpressionParserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;

using Pidgin.Expression;

using Xunit;

using static Pidgin.Parser;
using static Pidgin.Parser<char>;

Expand Down
2 changes: 0 additions & 2 deletions Pidgin.Tests/StringParserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
using System.Collections.Immutable;
using System.Linq;
using System.Text;

using Xunit;

using static Pidgin.Parser;
using static Pidgin.Parser<char>;

Check failure on line 9 in Pidgin.Tests/StringParserTests.cs

View workflow job for this annotation

GitHub Actions / build / build

The using static directive for 'Pidgin.Parser<char>' should appear after the using static directive for 'Pidgin.Parser'
Expand Down

0 comments on commit 7009f68

Please sign in to comment.