forked from scorelab/Codelabz
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/scorelab#891-edit-contributing-readme
- Loading branch information
Showing
247 changed files
with
13,909 additions
and
12,044 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es2021: true | ||
}, | ||
extends: ["eslint:recommended", "plugin:react/recommended"], | ||
parserOptions: { | ||
ecmaFeatures: { | ||
jsx: true | ||
}, | ||
ecmaVersion: 2020, | ||
sourceType: "module" | ||
}, | ||
plugins: ["react"], | ||
rules: {}, | ||
settings: { | ||
react: { | ||
version: "detect" | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npm run lint | ||
npm run format | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,40 @@ | ||
# Contributing | ||
|
||
When contributing to this repository, please first discuss the change you wish to make via issue, | ||
email or any other method with the owners of this repository before making a change. | ||
email or any other method with the owners of this repository before making a change. | ||
Please note we have a code of conduct, please follow it in all your interactions with the project. | ||
|
||
## Pull Request Process | ||
|
||
* Ensure any install or build dependencies are removed before the end of the layer when doing a build. | ||
- Ensure any install or build dependencies are removed before the end of the layer when doing a build. | ||
|
||
* ___Pull request message format: [Fixes done] #[issue number] [Description of the issue]___ | ||
* Wait for the maintainers to review your pull request and do the changes if requested. | ||
- **_Pull request message format: [Fixes done] #[issue number] [Description of the issue]_** | ||
- Wait for the maintainers to review your pull request and do the changes if requested. | ||
|
||
## Best Contribution Practices | ||
|
||
**Commits** | ||
* Write clear meaningful git commit messages. | ||
* Make sure your PR's description contains GitHub's special keyword references that automatically close the related issue when the PR is merged. (More info at https://github.com/blog/1506-closing-issues-via-pull-requests ) | ||
* When you're submitting a PR for a UI-related issue, it would be really awesome if you add a screenshot of your change or a link to a deployment where it can be tested out along with your PR. This makes it very easy for the reviewers and you'll also get reviews quicker. | ||
|
||
- Write clear meaningful git commit messages. | ||
- Make sure your PR's description contains GitHub's special keyword references that automatically close the related issue when the PR is merged. (More info at https://github.com/blog/1506-closing-issues-via-pull-requests ) | ||
- When you're submitting a PR for a UI-related issue, it would be really awesome if you add a screenshot of your change or a link to a deployment where it can be tested out along with your PR. This makes it very easy for the reviewers and you'll also get reviews quicker. | ||
|
||
**Feature Requests and Bug Reports** | ||
* When you file a feature request or when you are submitting a bug report, make sure you add steps to reproduce it. Especially if that bug is some weird/rare one. | ||
|
||
* ___Please follow the templates when posting a issue.___ | ||
- When you file a feature request or when you are submitting a bug report, make sure you add steps to reproduce it. Especially if that bug is some weird/rare one. | ||
|
||
* Feature_Request / Bug_Report - [includes in repository] | ||
- **_Please follow the templates when posting a issue._** | ||
|
||
* Would you like to work on the issue? | ||
* [X] Yes | ||
* [ ] No | ||
* [ ] Other: | ||
- Feature_Request / Bug_Report - [includes in repository] | ||
|
||
- Would you like to work on the issue? | ||
- [x] Yes | ||
- [ ] No | ||
- [ ] Other: | ||
|
||
**Join the development** | ||
* Before you join development, please set up the project on your local machine, run it and go through the application completely. | ||
* If you would like to work on an issue, drop in a comment at the issue. If it is already assigned to someone, but there is no sign of any work being done, please free to drop in a comment so that the issue can be assigned to you if the previous assignee has dropped it entirely. | ||
* Feel free to Ask Anything! 😎 [Gitter]:https://gitter.im/scorelab/ | ||
[homepage]:https://github.com/scorelab/ | ||
|
||
- Before you join development, please set up the project on your local machine, run it and go through the application completely. | ||
- If you would like to work on an issue, drop in a comment at the issue. If it is already assigned to someone, but there is no sign of any work being done, please free to drop in a comment so that the issue can be assigned to you if the previous assignee has dropped it entirely. | ||
- Feel free to Ask Anything! 😎 [Gitter]:https://gitter.im/scorelab/ | ||
[homepage]:https://github.com/scorelab/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
import { defineConfig } from 'cypress'; | ||
|
||
import { defineConfig } from "cypress"; | ||
|
||
export default defineConfig({ | ||
e2e: { | ||
setupNodeEvents(on, config) { | ||
// implement node event listeners here | ||
}, | ||
baseUrl: 'http://localhost:5173', | ||
testIsolation: false, | ||
baseUrl: "http://localhost:5173", | ||
testIsolation: false | ||
}, | ||
projectId: process.env.CYPRESS_PROJECT_ID | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.