-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
init: basically copy all of this code: https://github.com/kentcdodds/…
- Loading branch information
Kent C. Dodds
committed
Mar 27, 2019
0 parents
commit 946c2f8
Showing
70 changed files
with
19,439 additions
and
0 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,90 @@ | ||
{ | ||
"projectName": "advanced-component-patterns-v2", | ||
"projectOwner": "kentcdodds", | ||
"repoType": "github", | ||
"files": [ | ||
"README.md" | ||
], | ||
"imageSize": 100, | ||
"commit": false, | ||
"contributors": [ | ||
{ | ||
"login": "kentcdodds", | ||
"name": "Kent C. Dodds", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/1500684?v=3", | ||
"profile": "https://kentcdodds.com", | ||
"contributions": [ | ||
"code", | ||
"doc", | ||
"infra", | ||
"test" | ||
] | ||
}, | ||
{ | ||
"login": "FWeinb", | ||
"name": "FWeinb", | ||
"avatar_url": "https://avatars0.githubusercontent.com/u/1250430?v=4", | ||
"profile": "https://github.com/FWeinb", | ||
"contributions": [ | ||
"bug", | ||
"ideas" | ||
] | ||
}, | ||
{ | ||
"login": "dlannoye", | ||
"name": "David Lannoye", | ||
"avatar_url": "https://avatars2.githubusercontent.com/u/1383720?v=4", | ||
"profile": "https://github.com/dlannoye", | ||
"contributions": [ | ||
"bug", | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "colinrcummings", | ||
"name": "Colin Cummings", | ||
"avatar_url": "https://avatars2.githubusercontent.com/u/9815009?s=460&v=4", | ||
"profile": "https://github.com/colinrcummings", | ||
"contributions": [ | ||
"code", | ||
"test" | ||
] | ||
}, | ||
{ | ||
"login": "bkoltai", | ||
"name": "Benji Koltai", | ||
"avatar_url": "https://avatars2.githubusercontent.com/u/464764?v=4", | ||
"profile": "https://github.com/bkoltai", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "baggasumit", | ||
"name": "Sumit Bagga", | ||
"avatar_url": "https://avatars1.githubusercontent.com/u/1779959?v=4", | ||
"profile": "http://baggasumit.github.io", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "Tarabyte", | ||
"name": "Yury Tarabanko", | ||
"avatar_url": "https://avatars0.githubusercontent.com/u/2027010?v=4", | ||
"profile": "https://github.com/Tarabyte", | ||
"contributions": [ | ||
"code" | ||
] | ||
}, | ||
{ | ||
"login": "themostcolm", | ||
"name": "Alex Wendte", | ||
"avatar_url": "https://avatars2.githubusercontent.com/u/5779538?v=4", | ||
"profile": "http://www.wendtedesigns.com/", | ||
"contributions": [ | ||
"code" | ||
] | ||
} | ||
] | ||
} |
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,4 @@ | ||
node_modules | ||
coverage | ||
build | ||
.idea/ |
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,10 @@ | ||
{ | ||
"printWidth": 70, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"bracketSpacing": false, | ||
"jsxBracketSameLine": false | ||
} |
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,16 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: 8 | ||
install: echo "Installation happens in the setup script" | ||
cache: | ||
directories: | ||
- node_modules | ||
notifications: | ||
email: false | ||
branches: | ||
only: | ||
- master | ||
script: | ||
- npm run setup | ||
after_success: | ||
- npx codecov |
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,74 @@ | ||
# Contributor Covenant Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
In the interest of fostering an open and welcoming environment, we as | ||
contributors and maintainers pledge to making participation in our project and | ||
our community a harassment-free experience for everyone, regardless of age, body | ||
size, disability, ethnicity, gender identity and expression, level of experience, | ||
nationality, personal appearance, race, religion, or sexual identity and | ||
orientation. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to creating a positive environment | ||
include: | ||
|
||
* Using welcoming and inclusive language | ||
* Being respectful of differing viewpoints and experiences | ||
* Gracefully accepting constructive criticism | ||
* Focusing on what is best for the community | ||
* Showing empathy towards other community members | ||
|
||
Examples of unacceptable behavior by participants include: | ||
|
||
* The use of sexualized language or imagery and unwelcome sexual attention or | ||
advances | ||
* Trolling, insulting/derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or electronic | ||
address, without explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a | ||
professional setting | ||
|
||
## Our Responsibilities | ||
|
||
Project maintainers are responsible for clarifying the standards of acceptable | ||
behavior and are expected to take appropriate and fair corrective action in | ||
response to any instances of unacceptable behavior. | ||
|
||
Project maintainers have the right and responsibility to remove, edit, or | ||
reject comments, commits, code, wiki edits, issues, and other contributions | ||
that are not aligned to this Code of Conduct, or to ban temporarily or | ||
permanently any contributor for other behaviors that they deem inappropriate, | ||
threatening, offensive, or harmful. | ||
|
||
## Scope | ||
|
||
This Code of Conduct applies both within project spaces and in public spaces | ||
when an individual is representing the project or its community. Examples of | ||
representing a project or community include using an official project e-mail | ||
address, posting via an official social media account, or acting as an appointed | ||
representative at an online or offline event. Representation of a project may be | ||
further defined and clarified by project maintainers. | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be | ||
reported by contacting the project team at [email protected]. All | ||
complaints will be reviewed and investigated and will result in a response that | ||
is deemed necessary and appropriate to the circumstances. The project team is | ||
obligated to maintain confidentiality with regard to the reporter of an incident. | ||
Further details of specific enforcement policies may be posted separately. | ||
|
||
Project maintainers who do not follow or enforce the Code of Conduct in good | ||
faith may face temporary or permanent repercussions as determined by other | ||
members of the project's leadership. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, | ||
available at [http://contributor-covenant.org/version/1/4][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/4/ |
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,44 @@ | ||
# Contributing | ||
|
||
Thanks for being willing to contribute! | ||
|
||
**Working on your first Pull Request?** You can learn how from this _free_ series | ||
[How to Contribute to an Open Source Project on GitHub][egghead] | ||
|
||
## Project setup | ||
|
||
1. Fork and clone the repo | ||
2. Run `npm run setup -s` to install dependencies and run validation | ||
3. Create a branch for your PR with `git checkout -b pr/your-branch-name` | ||
|
||
> Tip: Keep your `master` branch pointing at the original repository and make | ||
> pull requests from branches on your fork. To do this, run: | ||
> | ||
> ``` | ||
> git remote add upstream https://github.com/kentcdodds/advanced-react-patterns.git | ||
> git fetch upstream | ||
> git branch --set-upstream-to=upstream/master master | ||
> ``` | ||
> | ||
> This will add the original repository as a "remote" called "upstream," | ||
> Then fetch the git information from that remote, then set your local `master` | ||
> branch to use the upstream master branch whenever you run `git pull`. | ||
> Then you can make all of your pull request branches based on this `master` | ||
> branch. Whenever you want to update your version of `master`, do a regular | ||
> `git pull`. | ||
## Committing and Pushing changes | ||
Please make sure to run the tests before you commit your changes. You can run | ||
`npm run test` and press `u` which will update any snapshots that need updating. | ||
Make sure to include those changes (if they exist) in your commit. | ||
## Help needed | ||
Please checkout the [the open issues][issues] | ||
Also, please watch the repo and respond to questions/bug reports/feature | ||
requests! Thanks! | ||
[egghead]: https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github | ||
[issues]: https://github.com/kentcdodds/advanced-component-patterns-v2/issues |
Oops, something went wrong.