Giter Club home page Giter Club logo

roslyn-analyzers's Issues

Use minimum possible accessibility

Consider (from DiagnosticAnalyzer.cs):

public const string RuleCategory = "Tutorial";

RuleCategory is only used within MetaCompilationAnalyzer, and as such it should be private. This goes for any member of a type. Also, in this particular case you'll need to change the name to match the coding conventions for private const/static members. So you'll end up with this:

private const string s_ruleCategory = "Tutorial";

Principle: Types and members should only be as accessible as they need to be.

Rewrite all messages

Rewrite the messages so that there are no ...s and they are consistent and allow people to not use the code fixes. Make the squiggled thing the subject.

  • "identifying" -> "distinguishing", id message

Add code fix to template

Move the code fix from SyntaxNodeAnalyzer into the blank template, with an explanatory comment

Add comments to code fixes

Have most code fixes come with a comment
Sync with template
Comments above rather than below

  • Register comment, "IfStatementSyntax" -> "IfStatement"
  • "intergers" -> "integers"
  • red squiggle is quoted

Sync up code fixes

Sync up all the code fixes written by different people so they follow the same format. Use SyntaxGenerator instead of SyntaxFactory, separate into two methods the creation of the new node and the insertion of that node, and move the creation of the node to the CodeFixNodeCreator class

Analyze if statement to include comments

  • inserting context.Register needs AnalyzeIfStatement comment inserted
  • inserting AnalyzeIfStatement needs AnalyzeIfStatement comment inserted
  • incorrect parameter needs AnalyzeIfStatement comment inserted

Enable CI builds

This includes the following:

  • Porting BuildAndTest.proj from dotnet/roslyn
  • Creating the appropriate cibuild.cmd/cibuild.sh scripts
  • Setting up Jenkins to work with this repo
  • Displaying Jenkins status badges on the home page

Don't pass message args in if there aren't any

ReportDiagnostic(context, IncorrectAccessorReturnRule, returnDeclaration.GetLocation());

vs.

ReportDiagnostic(context, IncorrectAccessorReturnRule, returnDeclaration.GetLocation(), IncorrectAccessorReturnRule.MessageFormat);

includes in the user end product

Add README.md

In particular, note how to get started with the project (downloading NuGet packages, building, etc.).

Setup NuGet package creation

This probably involves creating a separate project that just runs packaging for everything after Analyzers.sln is built, or maybe giving each sub-project (Microsoft.CodeAnalysis.Analyzers, AnalyzerPowerPack, etc.) it's own packaging project. We should consider using NuProj as well.

Change which trailing trivia to analyze

The trivia checks should be as follows:

if (ifKeyword.HasTrailingTrivia) 
{
    if (ifKeyword.TrailingTrivia.Count == 1)
    {
        var trailingTrivia = ifKeyword.TrailingTrivia.First();

add .Count ==1 and change .Last() to .First()

Update Labels

By and large we should copy the set of labels used by dotnet/roslyn:

  • 0 - Backlog (#CCCCCC)
  • 1 - Planning (#CCCCCC)
  • 2 - Ready (#CCCCCC)
  • 3 - Working (#CCCCCC)
  • 4 - In Review (#CCCCCC)
  • Area-Infrastructure (#5319e7)
  • Area-MetaCompilation (#5319e7)
  • Blocked (#6400)
  • Bug (#fc2929)
  • Discussion (#fbca04)
  • Enhancement (#fc2929)
  • Feature Request (#fc2929)
  • Localization (#fc2929)
  • Need More Info (#fbca04)
  • Question (#fc2929)
  • Resolution-Answered (#CCCCCC)
  • Resolution-By Design (#CCCCCC)
  • Resolution-Duplicate (#CCCCCC)
  • Resolution-External (#CCCCCC)
  • Resolution-Fixed (#CCCCCC)
  • Resolution-Not Applicable (#CCCCCC)
  • Resolution-Not Reproducible (#CCCCCC)
  • Resolution-Won't Fix (#CCCCCC)
  • Test (#fc2929)
  • Up for Grabs (#90EE90)
  • Verification Not Required (#6400)
  • Verified (#6400)
  • cla-already-signed (#009800)
  • cla-not-required (#90EE90)
  • cla-required (#e11d21)
  • cla-signed (#207de5)
  • Update existing issues with tags

Remove uses of ToString()

I see a fair number of places where ToString() is being called to get a string representation of an object which is then compared to some known/expected value.

The contract of the object.ToString method is very loose: it must simply return some string representation of the object. That string representation may not be what you want or expect, and in many cases it isn't documented at all. For example, calling ToString() on a SyntaxNode may return a string that preserves the original formatting in the document, or it may not.

For that reason you should generally only use ToString for debugging or logging purposes, and all other uses should be replaced with something else.

Fix Github README.md

  • use ``` to insert code snippets
  • links should be new lines, text should be links
  • link to how to recreate the syntax tree image
  • "underline" -> "squiggle"
  • "produce live warnings" -> "produce live diagnostics"
  • when explaining what the tutorial creates, it should allow for no trivia to be present
  • analyzer information section is wordy
  • link to Alex Turner's blog
  • verify accuracy of current links
  • don't discourage use of code fixes
  • open a new file for debugging should tell them to open a console app
  • walk through the steps of making an analyzer, per Kasey's suggestion
  • crop image

Diagnostic messages should be specific

I see a number of diagnostics where the title and message are the same.

Diagnostic titles should be very short and general, as they describe the diagnostic in general. Messages, on the other hand, can and should be customized to include information specific to a particular instance of a diagnostic.

For example, if your diagnostic's title is

Diagnostic ID has not been declared

then the accompanying message should be

Diagnotic ID '{0}' has not been declared

where {0} is a placeholder for the actual ID. Later, when calling Diagnostic.Create you can pass in the actual ID and the placeholder will be filled in.

Avoid use of 'object'

For example (from DiagnosticAnalyzer.cs):

internal List<object> CheckInitialize(CompilationAnalysisContext context)

This method always returns the same three things: an IMethodSymbol representing the Register method, a List<ISymbol> representing the arguments, and (sometimes) an InvocationExpressionSyntax for the method call. By putting them into a List<object> to return them, you're losing that type information. There are at least two problems with this:

  1. You aren't documenting what CheckInitialize really returns; instead, the caller needs to somehow know that the first item in the list is an IMethodSymbol, the second is a List<object>, etc.
  2. If you accidentally change the set of items returned, or return them in the wrong order, the compiler can't help you check that the caller is still using them in the correct way. For example, if the IMethodSymbol accidentally became the second item in the list, you wouldn't know until you run the code that something was broken.

The fix here is to create a helper type to hold these three pieces of information. E.g.,

class InitializeInfo
{
    public IMethodSymbol RegisterMethod { get; }
    public List<ISymbol> RegisterArgs { get; }
    public InvocationExpressionSyntax InvocationExpression { get; }

    public InitializeInfo(IMethodSymbol registerMethod, List<ISymbol> registerArgs, InvocationExpressionSyntax InvocationExpression = null;
    {
        RegisterMethod = registerMethod;
        RegisterArgs = registerArgs;
        InvocationExpression = invocationExpression;
    }
}

Principle: you should avoid using object whenever possible. In practice, you always have more information about type of an object, and by being as specific as possible the compiler can help catch errors.

TrailingTrivia checking

Check the count of TrailingTrivia in the final user product, and change .Last() to .First()

Move from MSTest to xUnit

MSTest has issues with running unit tests involving Roslyn. Also, dotnet/roslyn uses xUnit instead of MSTest and it would be good to be consistent.

Don't pass arguments you don't need

I've noticed a lot of methods in DiagnosticAnalyzer.cs that take a CompilationAnalysisContext as as argument, but then make no use of it (or pass it along to some other method that makes no use of it). These should be removed.

Replacing an explicit declaration with an equivalent compiler-generated should not trigger RS0017

See, for example, a declaration of an empty protected instance constructor in the class Microsoft.CodeAnalysis.Location:

    public abstract class Location
    {
        protected Location()
        {
        }

        // ...

This declaration is redundant. If you remove it from source, the compiler generates exactly the same by default. So, it does not affect a shape of public API in any way.

But when I tried to remove it, the build failed with an error:

error RS0017: Symbol 'Microsoft.CodeAnalysis.Location.Location()' is part of the declared API, but is either not public or could not be found

EXPECTED: This error does not occur.

Place a blank line after blocks

For example (from DiagnosticAnalyzer.cs), don't do this:

if (registerInfo == null)
{
    return;
}
var registerSymbol = (IMethodSymbol)registerInfo[0];

Instead, do this:

if (registerInfo == null)
{
    return;
}

var registerSymbol = (IMethodSymbol)registerInfo[0];

Principle: A block contains a set of related code. It should be visually distinct from the code that come after it, which is not related (at least, not in the same way).

Wording issues

  • change "must" to "should" everywhere
  • change "single whitespace" to "single space" everywhere

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.