diff --git a/.eslintrc.yml b/.eslintrc.yml index cd4ad212..c4bb74ac 100644 --- a/.eslintrc.yml +++ b/.eslintrc.yml @@ -5,8 +5,9 @@ env: jest: true root: true extends: - - 'plugin:react/recommended' + - "plugin:react/recommended" - airbnb + - prettier globals: Atomics: readonly SharedArrayBuffer: readonly @@ -19,15 +20,15 @@ parserOptions: plugins: - react ignorePatterns: - - 'node_modules/' - - 'build/' + - "node_modules/" + - "build/" rules: react/jsx-filename-extension: 0 no-underscore-dangle: 0 no-restricted-syntax: 1 no-await-in-loop: 1 - react/jsx-props-no-spreading: [2, {exceptions: [App, Component]}] + react/jsx-props-no-spreading: [2, { exceptions: [App, Component] }] react/jsx-fragments: 0 settings: react: - version: 'latest' + version: "detect" diff --git a/.github/ISSUE_TEMPLATE/blank-issue-template.md b/.github/ISSUE_TEMPLATE/blank-issue-template.md new file mode 100644 index 00000000..90f2b35c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/blank-issue-template.md @@ -0,0 +1,19 @@ +--- +name: Blank Issue Template +about: The standard issue template for Chayn +title: '' +labels: '' +assignees: '' + +--- + +### Overview +Clearly state the purpose of this issue, ideally in 2 sentences or less. +For example: *_We need to do X for Y reason._* + +### Action Items +List research to be done or the steps to be completed. +Note: If the steps can be divided into tasks for more than one person, we recommend dividing it up into separate issues, or assigning it as a pair programming task. + +### Resources +Provide links to resources that may help solve or better understand with this issue. This can include external sites with solutions, documentation, etc. diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..e5b54b9a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,39 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. +*Please do not report security vulnerabilities here. To report security vulnerabilities, please follow our Security Policy instructions:* https://github.com/chaynHQ/ysm/security/policy + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..e24ff55c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,18 @@ +--- +name: Feature request +about: Suggest an idea for Chayn +title: '' +labels: '' +assignees: '' + +--- + +### Is your feature request related to a problem? +Please provide a clear and concise description of what the problem is. +*Ex. I'm always frustrated when [...]* + +### Describe a solution: +If applicable, please a detailed description of what you want to see or build to fix the problem. Include who wants it (e.g. yourself, a survivor, volunteer, developer, organization, etc.), and what value you think this will bring. + +### Additional context and resources: +Add any other context, documents, links, screenshots about the feature request here. Please be detailed! diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..55271075 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,13 @@ +### Issue link / number: + +### What changes did you make? + +### Why did you make the changes? + +