Skip to content

Conversation

@IShix-g
Copy link
Owner

@IShix-g IShix-g commented Feb 19, 2025

No description provided.

IShix-g and others added 30 commits February 17, 2025 17:55
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

StyleCop

🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

while (a<5) a++; // 見づらいコード、波括弧省略


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

while (a<5) a++; // 見づらいコード、波括弧省略


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

var myList= new List<int>{1,2,3};


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

var myList= new List<int>{1,2,3};


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

var myList= new List<int>{1,2,3};


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

var myList= new List<int>{1,2,3};


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

var myList= new List<int>{1,2,3};


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

var myList= new List<int>{1,2,3};


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

foreach(int item in myList) {


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

foreach(int item in myList) {


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Replace 1 characters with '\n\s\s\s\s\s\s\s\s\s\s\s\s'.

foreach(int item in myList) {


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Replace 1 characters with '\n\s\s\s\s\s\s\s\s\s\s\s\s'.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'if' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'if' statement.

Debug.Log("Hello "); // スペースの不足や、不要なトレイリングスペース(SA1028)


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'for' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'if' statement.

foreach ( var x in testCollection) // インデント、スペースが正しく装飾されていない


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'foreach' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'while' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'if' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'else' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
The file header is missing or not located at the top of the file.


⚠️ [StyleCop] reported by reviewdog 🐶
File name should match first type name.


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain blank lines at start of file


⚠️ [StyleCop] reported by reviewdog 🐶
The file header is missing or not located at the top of the file.


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain blank lines at start of file


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain multiple whitespace characters in a row.

public int property_value { get; set; } // プロパティ名が小文字始まり (SA1300)


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain multiple whitespace characters in a row.

int testVariable = 42 ; // 余分なスペースで整列が崩れている (スペースルール反則)


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain multiple whitespace characters in a row.

Debug.Log("Hello "); // スペースの不足や、不要なトレイリングスペース(SA1028)


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain multiple whitespace characters in a row.

testCollection.Add(i); // ループで波括弧が欠如 (SA1503)


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain multiple whitespace characters in a row.


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain multiple whitespace characters in a row.


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted

if(m_nonStaticField < 10) Debug.Log("Direct Action") ; // 単一行の制御構文で波括弧が欠如 (SA1503)


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted

foreach ( var x in testCollection) // インデント、スペースが正しく装飾されていない


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.

// コレクションと演算で波括弧を使用せず、冗長


⚠️ [StyleCop] reported by reviewdog 🐶
Element 'property_value' should begin with an uppercase letter

public int property_value { get; set; } // プロパティ名が小文字始まり (SA1300)


⚠️ [StyleCop] reported by reviewdog 🐶
Element 'test_Method' should begin with an uppercase letter

public void test_Method() { // メソッド名が PascalCase に一致していない (SA1300)


⚠️ [StyleCop] reported by reviewdog 🐶
Element 'runAdditionalLogic' should begin with an uppercase letter

for (int i=0; i <50;i++) // 行の適切なスペースを欠く (スペース関連違反)


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this

if(m_nonStaticField < 10) Debug.Log("Direct Action") ; // 単一行の制御構文で波括弧が欠如 (SA1503)


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this

foreach ( var x in testCollection) // インデント、スペースが正しく装飾されていない


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted

Debug.Log("Correct Property is greater than zero");


⚠️ [StyleCop] reported by reviewdog 🐶
An opening brace should not be followed by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
Element 'improperly_named_class' should begin with an uppercase letter

class improperly_named_class


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this

public int IntProperty => _intField;

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

StyleCop

🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Replace 1 characters with '\n\s\s\s\s\s\s\s\s\s\s\s\s'.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'if' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'if' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'while' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'if' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'else' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
The file header is missing or not located at the top of the file.


⚠️ [StyleCop] reported by reviewdog 🐶
File name should match first type name.


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain blank lines at start of file


⚠️ [StyleCop] reported by reviewdog 🐶
The file header is missing or not located at the top of the file.


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain blank lines at start of file


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
An opening brace should not be followed by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.

private void Very_Long_Method_With_No_Clear_Structure ()


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.

// コレクションと演算で波括弧を使用せず、冗長


⚠️ [StyleCop] reported by reviewdog 🐶
Element 'property_value' should begin with an uppercase letter

public int property_value { get; set; }


⚠️ [StyleCop] reported by reviewdog 🐶
Element 'runAdditionalLogic' should begin with an uppercase letter


⚠️ [StyleCop] reported by reviewdog 🐶
Element 'test_Method' should begin with an uppercase letter

public void test_Method() {


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted

Debug.Log("Correct Property is greater than zero");


⚠️ [StyleCop] reported by reviewdog 🐶
An opening brace should not be followed by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
Element 'improperly_named_class' should begin with an uppercase letter

class improperly_named_class


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this

public int IntProperty => _intField;

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

StyleCop

🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Replace 1 characters with '\n\s\s\s\s\s\s\s\s\s\s\s\s'.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'if' statement.


🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: '_'

private string stringField;


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'if' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'while' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'if' statement.


⚠️ [StyleCop] reported by reviewdog 🐶
Add braces to 'else' statement.


🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: '_'

private int m_nonStaticField;


🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: '_'

private List<int> testCollection = new List<int>();


🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Prefix 's_' does not match expected prefix '_'

private static int _s_static_Field = 10;


🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: '_'

static readonly string s_staticField = "This is a static field";


🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: '_'


🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: '_'


⚠️ [StyleCop] reported by reviewdog 🐶
The file header is missing or not located at the top of the file.


⚠️ [StyleCop] reported by reviewdog 🐶
File name should match first type name.


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain blank lines at start of file


⚠️ [StyleCop] reported by reviewdog 🐶
The file header is missing or not located at the top of the file.


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain blank lines at start of file


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
An opening brace should not be followed by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.

private void Very_Long_Method_With_No_Clear_Structure ()


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.

var myList= new List<int>{1,2,3};


⚠️ [StyleCop] reported by reviewdog 🐶
Elements should be separated by blank line

public int property_value { get; set; }


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted

Debug.Log("Correct Property is greater than zero");


⚠️ [StyleCop] reported by reviewdog 🐶
An opening brace should not be followed by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this

public int IntProperty => _intField;

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

StyleCop

🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Insert '\s'.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Delete 1 characters.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


🚫 [StyleCop] reported by reviewdog 🐶
Fix whitespace formatting. Replace 1 characters with '\n\s\s\s\s\s\s\s\s\s\s\s\s'.

if ( item%2 == 0) Debug.Log("偶数 アイテム") ; else Debug.Log ("奇数 アイテム") ; }


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted

Debug.Log("Correct Property is greater than zero");


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remaining comments which cannot be posted as a review comment to avoid GitHub Rate Limit

StyleCop

⚠️ [StyleCop] reported by reviewdog 🐶
The file header is missing or not located at the top of the file.


⚠️ [StyleCop] reported by reviewdog 🐶
The file header is missing or not located at the top of the file.


⚠️ [StyleCop] reported by reviewdog 🐶
File name should match first type name.


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain blank lines at start of file


⚠️ [StyleCop] reported by reviewdog 🐶
The file header is missing or not located at the top of the file.


⚠️ [StyleCop] reported by reviewdog 🐶
Code should not contain blank lines at start of file


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted


⚠️ [StyleCop] reported by reviewdog 🐶
An opening brace should not be followed by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.

private void Very_Long_Method_With_No_Clear_Structure ()


⚠️ [StyleCop] reported by reviewdog 🐶
Elements should be separated by blank line

public int property_value { get; set; }


⚠️ [StyleCop] reported by reviewdog 🐶
Braces should not be omitted

Debug.Log("Correct Property is greater than zero");


⚠️ [StyleCop] reported by reviewdog 🐶
An opening brace should not be followed by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
A closing brace should not be preceded by a blank line.


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this


⚠️ [StyleCop] reported by reviewdog 🐶
Elements should be separated by blank line

public string ProperlyStyledProperty { get; } = "This is a properly styled property";


⚠️ [StyleCop] reported by reviewdog 🐶
Elements should be separated by blank line

public int IntProperty => _intField;


⚠️ [StyleCop] reported by reviewdog 🐶
Interface names should begin with I

public interface StyleTestInterface{}


⚠️ [StyleCop] reported by reviewdog 🐶
Prefix local calls with this

public int IntProperty => _intField;

public const int ConstField = 10;
public static readonly int StaticField = 10;
public int NonStaticField;
private static int _s_static_Field = 10;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: 's_'

public int CorrectProperty { get; set; }

public static readonly string StaticProperty = "This is a static property";
static readonly string staticField = "This is a static field";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: 's_'


public static readonly string StaticProperty = "This is a static property";
static readonly string staticField = "This is a static field";
static string staticField2 = "This is a static field";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: 's_'

public int CorrectProperty { get; set; }

private int _incorrectField;
private string stringField;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: '_'

private int _incorrectField;
private string stringField;

static readonly string staticField = "This is a static field";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: 's_'

private string stringField;

static readonly string staticField = "This is a static field";
static string staticField2 = "This is a static field";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [StyleCop] reported by reviewdog 🐶
Naming rule violation: Missing prefix: 's_'

public sealed class StyleTestScript5
{
public static readonly string StaticProperty = "This is a static property";
public int CorrectProperty { get; set; }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [StyleCop] reported by reviewdog 🐶
Elements should be separated by blank line

@IShix-g IShix-g closed this Feb 22, 2025
@IShix-g IShix-g deleted the feature/csharp-lint-test branch February 22, 2025 05:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants