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
Copy file name to clipboardExpand all lines: src/docs/contribute/rules.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ outline: deep
24
24
- Minimize the use of the `regex` crate. Use Rust iterators and string methods for better performance.
25
25
- Compile time must be minimized to reduce impact on development workflow and downstream tools.
26
26
- Minimize third-party dependencies to reduce compilation speed and project complexity.
27
-
- Avoid heavy macros, generics, or any Rust techniques that slow down compilation.
27
+
- Avoid heavy macros, generics, or any Rust techniques that slow compilation or increase binary size.
28
28
- Our [CI runs](https://github.com/oxc-project/oxc/actions/workflows/ci.yml?query=branch%3Amain) complete in 3 minutes, any regressions need to be fixed.
0 commit comments