File tree Expand file tree Collapse file tree
StyleCop.Analyzers/Helpers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9090 <Rule Id =" SA1302" Action =" Error" />
9191 <Rule Id =" SA1303" Action =" Error" />
9292 <Rule Id =" SA1304" Action =" Error" />
93+ <Rule Id =" SA1305" Action =" Warning" />
9394 <Rule Id =" SA1309" Action =" Error" />
9495 <Rule Id =" SA1311" Action =" Error" />
9596 <Rule Id =" SA1400" Action =" Error" />
Original file line number Diff line number Diff line change @@ -95,10 +95,10 @@ internal static bool IsConsideredEmpty(XmlNodeSyntax xmlSyntax)
9595 return true ;
9696 }
9797
98- var cDataElement = xmlSyntax as XmlCDataSectionSyntax ;
99- if ( cDataElement != null )
98+ var cdataElement = xmlSyntax as XmlCDataSectionSyntax ;
99+ if ( cdataElement != null )
100100 {
101- foreach ( SyntaxToken token in cDataElement . TextTokens )
101+ foreach ( SyntaxToken token in cdataElement . TextTokens )
102102 {
103103 if ( ! string . IsNullOrWhiteSpace ( token . ToString ( ) ) )
104104 {
You can’t perform that action at this time.
0 commit comments