We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f986f commit 1b42393Copy full SHA for 1b42393
README.md
@@ -3183,6 +3183,11 @@ Other Style Guides
3183
inventorOf,
3184
);
3185
3186
+ //good
3187
+ export const MY_EXPORTED_FUNCTION = () => {
3188
+ return 'hello function';
3189
+};
3190
+
3191
// good (note that a comma must not appear after a "rest" element)
3192
createHero(
3193
firstName,
@@ -3546,7 +3551,7 @@ Other Style Guides
3546
3551
const PRIVATE_VARIABLE = 'should not be unnecessarily uppercased within a file';
3547
3552
3548
3553
// bad
3549
- export const THING_TO_BE_CHANGED = 'should obviously not be uppercased';
3554
+ export const MY_CONSTANT = 'should obviously not be uppercased';
3550
3555
3556
3557
export let REASSIGNABLE_VARIABLE = 'do not use let with uppercase variables';
0 commit comments