Skip to content

Commit

Permalink
Fix spell severity
Browse files Browse the repository at this point in the history
  • Loading branch information
teociaps committed Jul 10, 2024
1 parent e333c1e commit 691add6
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 17 deletions.
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[*.cs]

# VSSpell001: Spell Check
dotnet_diagnostic.VSSpell001.severity = none

# VSSpell002: Ignore Word
dotnet_diagnostic.VSSpell002.severity = none
7 changes: 6 additions & 1 deletion FeatureManagement.Database.sln
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FeatureManagement.Database.
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FeatureManagement.Database.CosmosDB", "src\FeatureManagement.Database.CosmosDB\FeatureManagement.Database.CosmosDB.csproj", "{84718A54-72FF-4AE9-9FFB-558088C344BD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FeatureManagement.Database.CosmosDB.Tests", "tests\FeatureManagement.Database.CosmosDB.Tests\FeatureManagement.Database.CosmosDB.Tests.csproj", "{BB720806-46DF-4F8E-BD91-0DEE06BA69F0}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FeatureManagement.Database.CosmosDB.Tests", "tests\FeatureManagement.Database.CosmosDB.Tests\FeatureManagement.Database.CosmosDB.Tests.csproj", "{BB720806-46DF-4F8E-BD91-0DEE06BA69F0}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "config", "config", "{72D5C448-265C-440D-9A9F-D38DDC39260D}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
3 changes: 3 additions & 0 deletions FeatureManagement.Database.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
<File Path="build\NuGet.props" />
<File Path="build\Versioning.props" />
</Folder>
<Folder Name="/config/">
<File Path=".editorconfig" />
</Folder>
<Folder Name="/samples/">
<Project Path="samples\ConsoleApp\ConsoleApp.csproj" />
<Project Path="samples\WebApiApp\WebApiApp.csproj" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright (c) Matteo Ciapparelli.
// Licensed under the MIT license.

// Ignore Spelling: Npgsql

using FeatureManagement.Database.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using Microsoft.FeatureManagement;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright (c) Matteo Ciapparelli.
// Licensed under the MIT license.

// Ignore Spelling: Mongo

using FeatureManagement.Database.MongoDB;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.FeatureManagement;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright (c) Matteo Ciapparelli.
// Licensed under the MIT license.

// Ignore Spelling: Mongo

using MongoDB.Driver;

namespace FeatureManagement.Database.MongoDB;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright (c) Matteo Ciapparelli.
// Licensed under the MIT license.

// Ignore Spelling: Mongo

using MongoDB.Driver;

namespace FeatureManagement.Database.MongoDB;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright (c) Matteo Ciapparelli.
// Licensed under the MIT license.

// Ignore Spelling: Postgre

using FeatureManagement.Database.EntityFrameworkCore.Tests;

namespace FeatureManagement.Database.EntityFrameworkCore.PostgreSQL.Tests;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright (c) Matteo Ciapparelli.
// Licensed under the MIT license.

// Ignore Spelling: Postgre

using DotNet.Testcontainers.Builders;
using FeatureManagement.Database.EntityFrameworkCore.Tests;
using Microsoft.Extensions.DependencyInjection;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright (c) Matteo Ciapparelli.
// Licensed under the MIT license.

// Ignore Spelling: Postgre

using FeatureManagement.Database;
using FeatureManagement.Database.EntityFrameworkCore.Tests;
using Microsoft.EntityFrameworkCore;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright (c) Matteo Ciapparelli.
// Licensed under the MIT license.

// Ignore Spelling: Mongo

using Microsoft.Extensions.DependencyInjection;
using static FeatureManagement.Database.Features;

Expand Down

0 comments on commit 691add6

Please sign in to comment.