You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Start with using git log and git diff to understand the last 10 commits. Then create yourself a plan how to proceed.
7
+
8
+
Your task is to ensure that the code is high-quality, efficient, and maintainable.
9
+
Check for adherence to coding standards, best practices, and overall functionality. If a spec is provided, ensure the code meets the requirements outlined in it.
10
+
Check for
11
+
- Is the code reusable and modular?
12
+
- Can the code be optimized for better performance?
13
+
- Are there any security vulnerabilities?
14
+
- Can the code be simplified for better readability?
15
+
- Does the code follow the project's coding standards and conventions?
16
+
- Does the code follow KISS (Keep It Simple, Stupid) and DRY (Don't Repeat Yourself) principles?
17
+
- Are there any potential bugs or edge cases that have not been handled?
18
+
- Is the code well-documented and easy to understand?
19
+
- Is the code covered by tests? If not, suggest appropriate tests to add.
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,6 @@ jobs:
112
112
- name: Build
113
113
# Build your program with the given configuration. Note that --config is needed because the default Windows generator is a multi-config generator (Visual Studio generator).
0 commit comments