From f5211f6a08e9d00d43a9529b156f8643b627a0d8 Mon Sep 17 00:00:00 2001 From: Bijin A B Date: Sat, 6 Dec 2025 02:01:03 +0530 Subject: [PATCH] Update quotes rule for string in CODING_STANDARDS.md (#6327) --- CODING_STANDARDS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODING_STANDARDS.md b/CODING_STANDARDS.md index 400e8f51a..29a528e8f 100644 --- a/CODING_STANDARDS.md +++ b/CODING_STANDARDS.md @@ -6,7 +6,7 @@ - Use 2 spaces for indentation. No tabs, just spaces – keeps everything neat and uniform. -- Stick to single quotes for strings. Double quotes are cool elsewhere, but here we go single. +- Stick to single quotes for strings. For JSX/TSX attributes, use double quotes (e.g., ) to follow React conventions. - Always add semicolons at the end of statements. It's like putting a period at the end of a sentence – clarity matters.