diff --git a/.github/contributing.md b/.github/contributing.md new file mode 100644 index 0000000..3575579 --- /dev/null +++ b/.github/contributing.md @@ -0,0 +1,59 @@ +# Contributing Guidelines + +## General Overview +Code can be edited and changed on the `main` branch, any large features or + +## Code Style +
camelCase
+ camelCase
+ SCREAMING_SNAKE_CASE, except
+ when used in a for ... of loop.
+ CapitalCamelCase
+ if ( /* conditional */ ) {
+ /* ... snip ... */
+};
+
+Bad:
+ if ( /* conditional */ )
+ /* ... snip ... */
+
+ if ( /* conditional */ ) {
+ console.log(`A statement`);
+};
+
+Bad:
+if ( /* conditional */ ) {
+ console.log(`A statement`)
+}
+
+