Skip to content

Commit 9b78812

Browse files
committed
add cursor rules file
1 parent a7b925c commit 9b78812

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.cursorrules

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Cursor Rules file
2+
3+
## Python Best Practices
4+
5+
### Modern Typing
6+
7+
- Always use types.
8+
- Always use modern native types (dict not Dict, tuple, not Tuple).
9+
- Always use pipe (|) instead of `Union` for combining types.
10+
- Always use `x | None` instead of `Optional[x]`.
11+
12+
### File and Directory Access
13+
14+
- Always use `pathlib` and `Path` instead of older `os` methods.
15+
- Always prefer `Path.read_text()` and `Path.write_text()` instead of `open()` and an unnecessary context manager.

0 commit comments

Comments
 (0)