File tree 1 file changed +2
-1
lines changed 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 3
3
* Make only high confidence suggestions when reviewing code changes.
4
4
* Always use the latest version C#, currently C# 13 features.
5
5
* Never change global.json unless explicitly asked to.
6
+ * Never change package.json or package-lock.json files unless explicitly asked to.
6
7
7
8
## Formatting
8
9
12
13
* Ensure that the final return statement of a method is on its own line.
13
14
* Use pattern matching and switch expressions wherever possible.
14
15
* Use ` nameof ` instead of string literals when referring to member names.
15
- * Ensure that XML doc comments are created for any public APIs. When applicable, include <example > and <code > documentation in the comments.
16
+ * Ensure that XML doc comments are created for any public APIs. When applicable, include ` <example> ` and ` <code> ` documentation in the comments.
16
17
17
18
### Nullable Reference Types
18
19
You can’t perform that action at this time.
0 commit comments