├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md └── SECURITY.md /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering a safe and welcoming environment, we as 6 | the Angular team pledge to make participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity, gender expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Use welcoming and inclusive language 18 | * Respect each other 19 | * Provide and gracefully accept constructive criticism 20 | * Show empathy towards other community members 21 | 22 | Examples of unacceptable behavior by participants include: 23 | 24 | * Trolling, insulting/derogatory comments, and personal or political attacks 25 | * Public or private harassment 26 | * Publishing others' private information, such as a physical or electronic 27 | address, without explicit permission 28 | * The use of sexualized language or imagery 29 | * Unwelcome sexual attention or advances 30 | * Other conduct which could reasonably be considered inappropriate in a 31 | professional setting 32 | 33 | ## Our Responsibilities 34 | 35 | Angular team are responsible for clarifying the standards of acceptable 36 | behavior and are expected to take appropriate and fair corrective action in 37 | response to any instances of unacceptable behavior. 38 | 39 | Angular team have the right and responsibility to remove, edit, or 40 | reject comments, commits, code, wiki edits, issues, and other contributions 41 | that are not aligned to this Code of Conduct, and to ban temporarily or 42 | permanently any contributor for other behaviors that they deem inappropriate, 43 | threatening, offensive, or harmful. 44 | 45 | ## Scope 46 | 47 | This Code of Conduct applies to all Angular communication channels - online or in person, 48 | and it also applies when an individual is representing the project or its community in 49 | public spaces. Examples of representing a project or community include using an official 50 | project e-mail address, posting via an official social media account, or acting 51 | as an appointed representative at an online or offline event. Representation of 52 | a project may be further defined and clarified by project maintainers. 53 | 54 | ## Enforcement 55 | 56 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 57 | reported by contacting the Angular team at conduct@angular.io. All 58 | complaints will be reviewed and investigated and will result in a response that 59 | is deemed necessary and appropriate to the circumstances. The Angular team 60 | will maintain confidentiality with regard to the reporter of an incident. 61 | Enforcement may result in an indefinite ban from all official Angular communication 62 | channels, or other actions as deemed appropriate by the Angular team. 63 | 64 | Angular maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ### Appeal 69 | 70 | If you are banned you may contest the decision. To do so email conduct@angular.io with the subject line "Repeal Ban for {{your name here}}" and body with the responses to the following: 71 | 72 | * Why do you believe you did not violate the Code of Conduct? 73 | * Were other factors involved in this situation the leadership team may have been unaware of? 74 | * Why do you wish to be a part of the Angular community? 75 | 76 | ## Attribution 77 | 78 | This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org), version 1.4, 79 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 80 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Coraline Ada Ehmke 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Angular Contributor Code of Conduct 2 | 3 | See [CODE_OF_CONDUCT.md](https://github.com/angular/code-of-conduct/blob/main/CODE_OF_CONDUCT.md). 4 | 5 | This code of conduct applies to all of the projects under the [Angular organization on GitHub](https://github.com/orgs/angular/) and the Angular community at large (mailing lists, Twitter, YouTube etc.). 6 | 7 | See the [contributing guidelines](https://github.com/angular/angular/blob/main/CONTRIBUTING.md) for technical details of contributing to Angular or its satellite projects. 8 | 9 | ## Events 10 | 11 | If you are running an Angular meetup, conference, user group, or other type of event, we encourage you to adopt and provide an appropriate code of conduct. The [confcodeofconduct.com](http://confcodeofconduct.com/) template is a good starting point. 12 | 13 | You should also provide contact information for attendees to get help or report a violation. For more on adopting a code of conduct, see [Ashe Dryden's FAQ](http://ashedryden.com/blog/codes-of-conduct-101-faq). 14 | 15 | ## Credits 16 | 17 | Based on the [Contributor Covenant](https://github.com/EthicalSource/contributor_covenant). If you have suggestions to improve this code of conduct, please submit an issue or PR. 18 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | Angular is part of Google [Open Source Software Vulnerability Reward Program](https://bughunters.google.com/about/rules/6521337925468160/google-open-source-software-vulnerability-reward-program-rules). For vulnerabilities in Angular, please submit your report [here](https://bughunters.google.com/report). 2 | 3 | For more information, check out [Angular's security policy](https://angular.io/guide/security). 4 | --------------------------------------------------------------------------------