We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7b925c commit 9b78812Copy full SHA for 9b78812
.cursorrules
@@ -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