Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanthat #16

Draft
wants to merge 35 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
0dfefbb
these aren't ready yet but I still want to check them in
dgmjr Apr 2, 2023
66a4c9b
Update .gitignore
dgmjr Apr 2, 2023
0bbd788
these aren't ready yet...
dgmjr Apr 2, 2023
bde68ad
checking in so I can work on on the new "dev box"
dgmjr Apr 13, 2023
7fffcd9
Update Dgmjr.Identity.All.csproj
dgmjr Apr 23, 2023
95d8adc
Update README.md
dgmjr May 5, 2023
8632312
Add default Cleanthat configuration
cleanthat[bot] May 5, 2023
150f558
Update README.md
dgmjr May 20, 2023
b87dff5
Merge pull request #2 from dgmjr-io/cleanthat/configure_v2
dgmjr May 23, 2023
bdfbd54
Add .circleci/config.yml
dgmjr May 26, 2023
47360eb
ci: Add .deepsource.toml
deepsource-io[bot] Jun 2, 2023
09386dc
style: format code with dotnet-format
deepsource-autofix[bot] Jun 2, 2023
dac571a
Merge pull request #3 from dgmjr-io/deepsource-transform-b5dc6243
dgmjr Jun 5, 2023
417a836
still a work in progress
dgmjr Jun 7, 2023
5246861
Merge branch 'circleci-project-setup'
dgmjr Jun 7, 2023
4474607
Adding .slnproj
dgmjr Jun 8, 2023
295d69a
UPDATED: Added System.Text.Json package reference and updated BaseUri…
dgmjr Jun 8, 2023
4f11336
refactor: convert string interpolations with missing arguments to lit…
deepsource-autofix[bot] Jun 8, 2023
0431deb
Refactor Equals and add an XML namespace
dgmjr Jun 9, 2023
63a278c
Update ClaimValueTypes.cs
dgmjr Jun 9, 2023
6c15d89
Update Dgmjr.Identity.Claims.sln
dgmjr Jun 9, 2023
e9ab6b6
Merge pull request #5 from dgmjr-io/deepsource-autofix-8644c09b
dgmjr Jun 10, 2023
6e132e9
Update ClaimType.cs
dgmjr Jun 10, 2023
6705a34
style: format code with dotnet-format
deepsource-autofix[bot] Jun 10, 2023
e84660b
Update ClaimType.cs
dgmjr Jun 10, 2023
8d013ab
style: format code with dotnet-format
deepsource-autofix[bot] Jun 10, 2023
2b9434d
Merge pull request #10 from dgmjr-io/deepsource-transform-44c79c30
dgmjr Jun 10, 2023
89ddfba
Merge pull request #9 from dgmjr-io/deepsource-transform-1956209b
dgmjr Jun 10, 2023
34bbc5b
Update IIdentityDbContext.cs
dgmjr Jun 10, 2023
aab614b
Update UserLoginProviderEnum.cs
dgmjr Jun 10, 2023
08deb0e
Merge pull request #13 from dgmjr-io/3-get-off-of-the-aspnetcore-iden…
dgmjr Jun 10, 2023
4a6dee0
modified: README.md
dgmjr Jun 11, 2023
d21f7c7
refactor: Autofix issues in 1 file
deepsource-autofix[bot] Jun 11, 2023
b06e792
Merge pull request #15 from dgmjr-io/6-cs-w1006-equals-and-gethashcod…
dgmjr Jun 11, 2023
c2d7c5d
engine=spotless
cleanthat[bot] Jun 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: convert string interpolations with missing arguments to lit…
…erals

String interpolation requires that you specify the string that is to be interpolated and the required arguments. Failing to specify the required arguments may result in an ill-formatted string. Because it is possible that such strings can critically alter the behaviour and control-flow of the program, it is suggested that you fix it as soon as possible.
  • Loading branch information
deepsource-autofix[bot] authored Jun 8, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 4f1133655488760ff53ea409bee953c6997f376a
2 changes: 1 addition & 1 deletion src/Claims/ClaimValueTypes/ClaimValueTypes.Namespaces.cs
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ public static class Namespaces
/// <value><c>TR/</c></value>
public const string TR = $"{nameof(TR)}/";
/// <value><c>xmlschema11-2/</c></value>
public const string XmlSchema11_2 = $"xmlschema11-2/";
public const string XmlSchema11_2 = "xmlschema11-2/";
/// <value><c>#anyURI</c></value>
public const string AnyUriAnchor = "#anyURI";
/// <value><c>schema/</c></value>