From 99ebb445ba5403a205872e954859320faa88360b Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Fri, 7 Mar 2025 10:08:49 -0800 Subject: [PATCH] add cursor rules directory --- .cursor/rules/general.mdc | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .cursor/rules/general.mdc diff --git a/.cursor/rules/general.mdc b/.cursor/rules/general.mdc new file mode 100644 index 000000000..24daef2ba --- /dev/null +++ b/.cursor/rules/general.mdc @@ -0,0 +1,9 @@ +--- +description: General rules always applicable across the project +globs: +alwaysApply: true +--- +# Style + +- Comments must add value to code. Don't write filler comments explaining what you are doing next; they just add noise. +- Add a comment to clarify surprising behavior which would not be obvious. Good variable naming and clear code organization is more important.