From 2a57f018dd476dc3bcc9738aacceeab83eaab121 Mon Sep 17 00:00:00 2001 From: Krishna Kumar T A Date: Tue, 10 Sep 2024 10:38:42 +0200 Subject: [PATCH 1/2] chore update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f66720755..bf86ec6f67 100644 --- a/README.md +++ b/README.md @@ -3546,7 +3546,7 @@ Other Style Guides const PRIVATE_VARIABLE = 'should not be unnecessarily uppercased within a file'; // bad - export const THING_TO_BE_CHANGED = 'should obviously not be uppercased'; + export const thing_to_be_changed = 'should obviously be uppercased'; // bad export let REASSIGNABLE_VARIABLE = 'do not use let with uppercase variables'; From 8572a1fa4e56c65d95c5282b81081eead4dba6c0 Mon Sep 17 00:00:00 2001 From: Krishna Kumar T A Date: Tue, 10 Sep 2024 10:49:50 +0200 Subject: [PATCH 2/2] chore update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf86ec6f67..dd024bd60b 100644 --- a/README.md +++ b/README.md @@ -3546,7 +3546,7 @@ Other Style Guides const PRIVATE_VARIABLE = 'should not be unnecessarily uppercased within a file'; // bad - export const thing_to_be_changed = 'should obviously be uppercased'; + export const some_exported_constant = 'should obviously be uppercased'; // bad export let REASSIGNABLE_VARIABLE = 'do not use let with uppercase variables';