We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a5e418 commit c843f31Copy full SHA for c843f31
1 file changed
js/red-javascript-style-guide/readme.md
@@ -280,7 +280,7 @@ Put them at the top of the file as they will be executed first. Put exports befo
280
export { y };
281
import { x } from "./x.js";
282
import * as z from "./z.js";
283
-
+import FastAverageColor from "fast-average-color/dist/index.esm.js";
284
285
const y = 5;
286
```
@@ -554,7 +554,9 @@ Optionally Pascal case for creator/constructors.
554
555
Optionally all caps with underscores for top level constants that do not change across versions and runs.
556
557
-Package/module names and script names with lowercase with dashes. No dots.
+Package/module names and script names with lowercase with dashes. No dots.
558
+
559
+Default imports use the same letters as the package name.
560
561
#### Examples
562
0 commit comments