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
- Please add an "Assisted-by:" tag to git commits you create with the format: `Assisted-by: AGENTNAME:MODELVERSION`
7
+
- After modifying BUILD.bazel files, please format them with `buildozer '//cuttlefish/...:__pkg__' format`
8
+
- Every commit should be validated. Please validate changes by running `bazel build //...` and `bazel test //...`.
9
+
- To fix clang-format tests, run the `clang-format` executable directly.
10
+
11
+
## Style Rules
12
+
- Use type deduction (`auto`) only if it makes the code clearer to readers who aren't familiar with the project, or if it makes the code safer. Do not use it merely to avoid the inconvenience of writing an explicit type.
13
+
- Declare variables `const` if they are not modified after being declared.
0 commit comments