Skip to content

Roslyn powered analyzers for C# to support convention defined architecture

License

Notifications You must be signed in to change notification settings

mwelsh1118/Apex.Analyzers

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apex.Analyzers

Roslyn powered analyzers for C# to support convention defined architecture

Immutable Types

Build Status

Nuget Package

Provides an ImmutableAttribute type which can be applied to classes, structs, and interfaces. The analyzer ensures that the following rules hold for types marked with the attribute.

ID Severity Rule Code Fix
IMM001 Error Fields in an immutable type must be readonly Yes
IMM002 Error Auto properties in an immutable type must not define a set method Yes
IMM003 Error Types of fields in an immutable type must be immutable No
IMM004 Error Types of auto properties in an immutable type must be immutable No
IMM005 Warning 'This' should not be passed out of the constructor of an immutable type No
IMM006 Error The base type of an immutable type must be 'object' or immutable No
IMM007 Error Types derived from an immutable type must be immutable No

Whitelisting types via additional files

The immutable types analyzer allows specifying types to be whitelisted in an Additional File.

The name of the additional file is "ImmutableTypes.txt" and the format of the file is one namespace qualified type name per line. For example:

System.Xml.Linq.XName
System.Func`1

About

Roslyn powered analyzers for C# to support convention defined architecture

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 96.5%
  • PowerShell 3.5%