Skip to content

Commit 1b42393

Browse files
committed
Descriptive commit message
1 parent 11f986f commit 1b42393

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3183,6 +3183,11 @@ Other Style Guides
31833183
inventorOf,
31843184
);
31853185

3186+
//good
3187+
export const MY_EXPORTED_FUNCTION = () => {
3188+
return 'hello function';
3189+
};
3190+
31863191
// good (note that a comma must not appear after a "rest" element)
31873192
createHero(
31883193
firstName,
@@ -3546,7 +3551,7 @@ Other Style Guides
35463551
const PRIVATE_VARIABLE = 'should not be unnecessarily uppercased within a file';
35473552
35483553
// bad
3549-
export const THING_TO_BE_CHANGED = 'should obviously not be uppercased';
3554+
export const MY_CONSTANT = 'should obviously not be uppercased';
35503555
35513556
// bad
35523557
export let REASSIGNABLE_VARIABLE = 'do not use let with uppercase variables';

0 commit comments

Comments
 (0)