Add to .rules
: Avoid creating mod.rs
paths (#29174)
Release Notes: - N/A
This commit is contained in:
parent
733cd6b68c
commit
3b31860d52
1 changed files with 1 additions and 0 deletions
1
.rules
1
.rules
|
@ -5,6 +5,7 @@
|
|||
* Prefer implementing functionality in existing files unless it is a new logical component. Avoid creating many small files.
|
||||
* Avoid using functions that panic like `unwrap()`, instead use mechanisms like `?` to propagate errors.
|
||||
* Be careful with operations like indexing which may panic if the indexes are out of bounds.
|
||||
* Never create files with `mod.rs` paths - prefer `src/some_module.rs` instead of `src/some_module/mod.rs`.
|
||||
|
||||
# GPUI
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue