diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml index 523a711..72abc43 100644 --- a/.github/ISSUE_TEMPLATE/bug.yaml +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -3,6 +3,14 @@ description: The template for all 3rd party bug reports labels: - bug body: + - type: markdown + attributes: + value: >- + # Before You Begin + + Make sure that you have checked the [issues](https://github.com/Oliver-Akins/file-hider/issues) + page for any bug reports that are similar to yours, if you've found a + similar one, make a comment on that issue with your extra information. - type: markdown attributes: value: '# Version Information' @@ -60,17 +68,3 @@ body: List steps that can reproduce the issue. If this is left blank, issues may be deemed lower priority and take longer to fix. value: 1. Hide a file/folder - - type: markdown - attributes: - value: |- - --- - - # Confirmations - - type: checkboxes - attributes: - label: Have you? - options: - - label: >- - I have checked that there isn't already a bug on the GitHub issue - tracker for this issue - required: true 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`)
+}
+
+