Search for matching named spelling errors

I just opened the variable name with an error. If it were hidden deep in the code, that would be nice, but this variable name ends with a configuration that is saved with visibility to the client. It really doesn't matter, but I wonder if there is a way to avoid this?

In this case, the variable name is a compound word that I will not reproduce here due to the NDA, but imagine that it is something like "confirmRecieved" (i and e are upside down). Can someone recommend a code spellchecker that catches something like this?

+3
source share
4 answers

Visual Studio, Code Analysis.

, , .

- CA1704: .

Visual Studio, .NET, FxCop, , , IDE.

Code Analysis FxCop .

+2

. ReSharper AgentSmith. GhostDoc, . AgentSmith .

void SomeFunction(int confirmationRecieved)
{
}

/// <summary>
/// Somes the function.
/// </summary>
/// <param name="confirmationRecieved">The confirmation recieved.</param>
void SomeFunction(int confirmationRecieved)
{
}

""

+1

Visual Studio , , .

, - , , .

0

, IDE . , Windows Visual Studio, Visual Assist X, . , ( , ). , Visual Assist "Refactor", //, . , - .

0

Source: https://habr.com/ru/post/1708891/


All Articles