From 82dd048c524f88b823cbeb572dc9587012959e31 Mon Sep 17 00:00:00 2001 From: sebthom Date: Sun, 25 Aug 2024 19:21:54 +0200 Subject: [PATCH 1/6] ci: remove travis config Signed-off-by: sebthom --- .travis.yml | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a96f5253..00000000 --- a/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -sudo: false -language: java -jdk: - - openjdk11 - -script: mvn clean package From d09795e36a1eafdf2ba2988206d36ccac765e23a Mon Sep 17 00:00:00 2001 From: sebthom Date: Sun, 25 Aug 2024 19:22:02 +0200 Subject: [PATCH 2/6] build: update git config Signed-off-by: sebthom --- .gitattributes | 133 ++++++++++++++++++++++++++++++++++++++++++++++++- .gitignore | 45 +++++++++++++++-- 2 files changed, 172 insertions(+), 6 deletions(-) diff --git a/.gitattributes b/.gitattributes index 6f96419c..3da95f06 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,133 @@ +# inspired by +# - https://github.com/alexkaratarakis/gitattributes/blob/master/Java.gitattributes +# - https://github.com/alexkaratarakis/gitattributes/blob/master/Common.gitattributes + +# Handle line endings automatically for files detected as text +# and leave all files detected as binary untouched. * text=auto -*.eea text eol=lf + +# +# The above will handle all files with names NOT matching patterns defined below +# + +# Git files +.gitattributes text eol=lf +**/.gitattributes text eol=lf +.gitignore text eol=lf +**/.gitignore text eol=lf + + +# Documents +*.doc binary diff=astextplain +*.docx binary diff=astextplain +*.dot binary diff=astextplain +*.eea text +*.pdf binary diff=astextplain +*.ppt binary diff=astextplain +*.pptx binary diff=astextplain +*.rtf binary diff=astextplain +*.vsd binary diff=astextplain +*.vsdx binary diff=astextplain +*.odt binary diff=odf +*.ods binary diff=odf +*.odp binary diff=odf +*.adoc text +*.csv text +*.md text diff=markdown +*.txt text + + +# Config/Serialisation +.editorconfig text +**/.editorconfig text +*.ini text +*.properties text +*.json text +*.toml text +*.xml text +*.yaml text +*.yml text + + +# Scripts +*.bat text eol=crlf +*.cmd text eol=crlf +*.ps1 text eol=crlf +*.bash text eol=lf +*.fish text eol=lf +*.sh text eol=lf +*.zsh text eol=lf +*.lua text +*.php text +*.py text +*.python text +*.sql text + + +# Archives +*.7z binary +*.gz binary +*.tar binary +*.tar.gz binary +*.tgz binary +*.xz binary +*.zip binary + + +# Native binaries +*.dll binary +*.dylib binary +*.exe binary +*.so binary + + +# Images +*.eps binary +*.gif binary +*.ico binary +*.jpg binary +*.jpeg binary +*.png binary +*.svg text +*.svgz binary +*.tif binary +*.tiff binary + + +# Fonts +*.eot binary +*.otf binary +*.ttf binary +*.woff binary + + +# Java +*.gradle text diff=java +*.gradle.kts text diff=java +*.java text diff=java +*.class binary +*.ear binary +*.jceks binary +*.jks binary +*.jar binary +*.pak binary +*.war binary +*.jsp text +*.jspf text +*.jspx text +*.tld text +*.tag text +*.tagx text + + +# Web +*.css text diff=css +*.htm text diff=html +*.html text diff=html +*.js text + + +# https://git-scm.com/docs/gitattributes#_export_ignore +.gitattributes export-ignore +.gitignore export-ignore +.gitkeep export-ignore diff --git a/.gitignore b/.gitignore index 55a88cb4..bb74ef2b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,50 @@ +# Local work folder that is not checked in +_LOCAL/ + # Eclipse -.project +.apt_generated/ +.checkstyle .classpath +.factorypath +.project .settings/ +bin/ # Maven target/ - -# IntelliJ IDEA -*.iml -.idea/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties +# https://github.com/takari/maven-wrapper#usage-without-binary-jar +.mvn/wrapper/maven-wrapper.jar # maven-shade-plugin dependency-reduced-pom.xml +# IntelliJ +.idea +*.iml +*.ipr +*.iws + +# NetBeans +nb-configuration.xml + +# Visual Studio Code +.vscode + +# OSX +.DS_Store + +# Vim +*.swo +*.swp + +# patch +*.orig +*.rej From fc1d8898af2f6aa9c9a8abe821c897d63d24e2d5 Mon Sep 17 00:00:00 2001 From: sebthom Date: Sun, 25 Aug 2024 19:33:10 +0200 Subject: [PATCH 3/6] docs: update README Signed-off-by: sebthom --- README.md | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e21586d3..8172e5a2 100644 --- a/README.md +++ b/README.md @@ -9,25 +9,29 @@ If you like/use this project, a Star / Watch / Follow on GitHub is appreciated. ## How to use this -[See theses slides here](http://www.slideshare.net/mikervorburger/the-end-of-the-world-as-we-know-it-aka-your-last-nullpointerexception-1b-bugs) from this [EclipseCon Europe 2016 presentation](https://www.eclipsecon.org/europe2016/session/end-world-we-know-it-aka-your-last-nullpointerexception-1b-bugs) for some background about this project. +[See theses slides here](http://www.slideshare.net/mikervorburger/the-end-of-the-world-as-we-know-it-aka-your-last-nullpointerexception-1b-bugs) from this +[EclipseCon Europe 2016 presentation](https://www.eclipsecon.org/europe2016/session/end-world-we-know-it-aka-your-last-nullpointerexception-1b-bugs) for some background about this project. -To automatically Enable Annotation-based Null Analysis in the Eclipse Project Preferences correctly (e.g. when you import the `examples/` here), we highly recommend you install the [eclipse-external-annotations-m2e-plugin](https://github.com/lastnpe/eclipse-external-annotations-m2e-plugin) Maven IDE (M2E) Configurator Eclipse plugin. (On Eclipse m2e versions < 1.8 (shipped with Oxygen), you also had to install [m2e-jdt-compiler](https://github.com/jbosstools/m2e-jdt-compiler), but with M2E 1.8 in Oxygen that is not necessary anymore, even harmful; see below.) +To automatically Enable Annotation-based Null Analysis in the Eclipse Project Preferences correctly (e.g. when you import the `examples/` here), we highly +recommend you install the [eclipse-external-annotations-m2e-plugin](https://github.com/lastnpe/eclipse-external-annotations-m2e-plugin) Maven IDE (M2E) Configurator Eclipse plugin. +(On Eclipse m2e versions < 1.8 (shipped with Oxygen), you also had to install [m2e-jdt-compiler](https://github.com/jbosstools/m2e-jdt-compiler), but with M2E 1.8 in Oxygen that is not necessary anymore, even harmful; see below.) ## Contribute -This project aims to develop an active community of contributors, and not remain controlled by a single person. Anyone making 3 intelligent contributions to this repo may ask to be promoted from a contributor to a committer with full write access by opening an issue requesting it. (We reserve the right to re-remove committers in exceptional circumstances, and after long periods of inactivity.) +This project aims to develop an active community of contributors, and not remain controlled by a single person. +Anyone making 3 intelligent contributions to this repo may ask to be promoted from a contributor to a committer with full write access by opening an issue requesting it. +(We reserve the right to remove committers in exceptional circumstances, and after long periods of inactivity.) -We intend to liberally and quickly merge any contributions with additions to EEA, and avoid delays due to lengthy reviews -(which are anyway [kind of difficult to do rapidly and at scale until we solve issue #16](https://github.com/lastnpe/eclipse-null-eea-augments/issues/16)), +We intend to liberally and quickly merge any contributions with additions to EEA, and avoid delays due to lengthy reviews +(which are anyway [kind of difficult to do rapidly and at scale until we solve issue #16](https://github.com/lastnpe/eclipse-null-eea-augments/issues/16)), based on the idea that having an EEA that can be tested is better than none. -We intend to spend more time and request community feedback from engaged previous contributors on any proposed changes to existing EEA in this repo. When making contributions with changes, please explain what is wrong in the current version in the commit message. +We intend to spend more time and request community feedback from engaged previous contributors on any proposed changes to existing EEA in this repo. +When making contributions with changes, please explain what is wrong in the current version in the commit message. We generally do not "self merge", but let other committers merge our own changes. -We hang out and chat about this project on https://mattermost.eclipse.org/eclipse/channels/jdt-null-analysis - ## Troubleshooting @@ -38,4 +42,4 @@ We hang out and chat about this project on https://mattermost.eclipse.org/eclips ## Future -If this is found to be of general interest, perhaps this could move to eclipse.org. If this happens, it would be imperative to keep it very easy for anyone to contribute via Pull Requests on GitHub (and not, or not you only, eclipse.org Gerrit changes). +If this is found to be of general interest, perhaps this could move to eclipse.org. If this happens, it would be imperative to keep it very easy for anyone to contribute via Pull Requests on GitHub (and not, or not you only, eclipse.org Gerrit changes). From e3d87e75fa07ab2fbc19db861512eac42282792b Mon Sep 17 00:00:00 2001 From: sebthom Date: Mon, 26 Aug 2024 17:14:57 +0200 Subject: [PATCH 4/6] docs: update contributing guidelines Signed-off-by: sebthom --- CONTRIBUTING.md | 46 ++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 42 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d9faf35a..79dc2e69 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,45 @@ -Project licensed under the [Eclipse Public License 1.0 (EPL)](LICENSE). +# Contributing to the Project -* You will only Submit Contributions where You have authored 100% of the content. +Thank you for your interest in contributing to this project! We strive to make the contribution process clear and welcoming. -* You will only Submit Contributions to which You have the necessary rights. This means that if You are employed, You have received the necessary permissions from Your employer to make the Contributions. +Please take a moment to review the guidelines below. -* Whatever content You Contribute will be provided under the Project License. + +## Code of Conduct + +Please review and adhere to our [Code of Conduct](CODE_OF_CONDUCT.md) in all your interactions with the project. +This helps us maintain a positive and respectful environment for everyone involved. + + +## How to Contribute + +### Contributor Responsibilities + +By submitting your contributions, you agree to the following: +- You are the sole author of the content you contribute, or you have the appropriate rights and permissions to contribute it. +- If employed, you have obtained any necessary permissions from your employer to contribute to this project. +- All contributions will be made available under the project’s license. + +### Issues + +We use GitHub Issues to track bugs and feature requests. When submitting an issue, please ensure: +- The description is clear and concise. +- You provide enough details and steps to reproduce the issue, if applicable. + +### Pull Requests + +Before making substantial contributions: +1. **Discuss Changes**: Please file an issue first to discuss your proposed changes with the team. This helps ensure your contribution aligns with the project’s goals. +2. **Follow Best Practices**: Adhere to the guidelines and ensure your code meets the project’s standards (see [Code Guidelines](#code-guidelines)). + +When submitting a pull request: +- Ensure your changes are well-documented. +- Include tests for any new features or significant changes. +- Reference the relevant issue(s) in your pull request description. + + +## Licensing + +By contributing to this project, you agree that your contributions will be licensed under the [Eclipse Public License 1.0](LICENSE). + +The project itself is also licensed under the [Eclipse Public License 1.0 (EPL)](LICENSE). From da6c085bf599949e683dd60baa34ccbe85985121 Mon Sep 17 00:00:00 2001 From: sebthom Date: Mon, 26 Aug 2024 18:30:15 +0200 Subject: [PATCH 5/6] chore: bump version to 3.0.0-SNAPSHOT Signed-off-by: sebthom --- examples/maven/hello/pom.xml | 2 +- examples/maven/jdt-ecj-settings/pom.xml | 2 +- examples/maven/lib/pom.xml | 2 +- examples/maven/pom.xml | 2 +- libraries/eea-all/pom.xml | 2 +- libraries/gson/pom.xml | 2 +- libraries/guava/pom.xml | 2 +- libraries/java/pom.xml | 2 +- libraries/javamail/pom.xml | 2 +- libraries/jetty/pom.xml | 2 +- libraries/junit5/pom.xml | 2 +- libraries/mockito/pom.xml | 2 +- libraries/osgi-core/pom.xml | 2 +- libraries/pom.xml | 2 +- libraries/servlet-api/pom.xml | 2 +- libraries/slf4j-api/pom.xml | 2 +- libraries/spring/pom.xml | 2 +- libraries/xstream/pom.xml | 2 +- pom.xml | 10 ++++++++-- 19 files changed, 26 insertions(+), 20 deletions(-) diff --git a/examples/maven/hello/pom.xml b/examples/maven/hello/pom.xml index fb4568f4..087603d7 100644 --- a/examples/maven/hello/pom.xml +++ b/examples/maven/hello/pom.xml @@ -5,7 +5,7 @@ org.lastnpe.examples examples-reactor - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT hello diff --git a/examples/maven/jdt-ecj-settings/pom.xml b/examples/maven/jdt-ecj-settings/pom.xml index 4b903806..e76a4e0c 100644 --- a/examples/maven/jdt-ecj-settings/pom.xml +++ b/examples/maven/jdt-ecj-settings/pom.xml @@ -4,7 +4,7 @@ org.lastnpe.examples jdt-ecj-settings - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT Examples :: JDT-ECJ-Settings diff --git a/examples/maven/lib/pom.xml b/examples/maven/lib/pom.xml index 573d6e7d..552a65ab 100644 --- a/examples/maven/lib/pom.xml +++ b/examples/maven/lib/pom.xml @@ -5,7 +5,7 @@ org.lastnpe.examples examples-reactor - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT lib diff --git a/examples/maven/pom.xml b/examples/maven/pom.xml index 4a8ca1c1..c329b1d1 100644 --- a/examples/maven/pom.xml +++ b/examples/maven/pom.xml @@ -5,7 +5,7 @@ org.lastnpe.eea eea-root - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT ../../pom.xml diff --git a/libraries/eea-all/pom.xml b/libraries/eea-all/pom.xml index 8e66b4f7..a64306d9 100644 --- a/libraries/eea-all/pom.xml +++ b/libraries/eea-all/pom.xml @@ -5,7 +5,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT eea-all diff --git a/libraries/gson/pom.xml b/libraries/gson/pom.xml index 3a0f50b2..cfd4d6e0 100644 --- a/libraries/gson/pom.xml +++ b/libraries/gson/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT gson-eea diff --git a/libraries/guava/pom.xml b/libraries/guava/pom.xml index f13e7f74..44fbc1d9 100644 --- a/libraries/guava/pom.xml +++ b/libraries/guava/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT guava-eea diff --git a/libraries/java/pom.xml b/libraries/java/pom.xml index e21e213c..2c26f4d7 100644 --- a/libraries/java/pom.xml +++ b/libraries/java/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT jdk-eea diff --git a/libraries/javamail/pom.xml b/libraries/javamail/pom.xml index 2014f92b..ca657035 100644 --- a/libraries/javamail/pom.xml +++ b/libraries/javamail/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT javamail-eea diff --git a/libraries/jetty/pom.xml b/libraries/jetty/pom.xml index 47c3b423..0fda137b 100644 --- a/libraries/jetty/pom.xml +++ b/libraries/jetty/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT jetty-eea diff --git a/libraries/junit5/pom.xml b/libraries/junit5/pom.xml index efc72f9e..4478eef4 100644 --- a/libraries/junit5/pom.xml +++ b/libraries/junit5/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT junit5-eea diff --git a/libraries/mockito/pom.xml b/libraries/mockito/pom.xml index 0b4810cf..cd302c32 100644 --- a/libraries/mockito/pom.xml +++ b/libraries/mockito/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT mockito-eea diff --git a/libraries/osgi-core/pom.xml b/libraries/osgi-core/pom.xml index 8824791e..8fa574f7 100644 --- a/libraries/osgi-core/pom.xml +++ b/libraries/osgi-core/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT osgi-core-eea diff --git a/libraries/pom.xml b/libraries/pom.xml index f10cb62f..a9892e60 100644 --- a/libraries/pom.xml +++ b/libraries/pom.xml @@ -5,7 +5,7 @@ org.lastnpe.eea eea-root - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT eea-parent diff --git a/libraries/servlet-api/pom.xml b/libraries/servlet-api/pom.xml index bb95530c..13b287b5 100644 --- a/libraries/servlet-api/pom.xml +++ b/libraries/servlet-api/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT servlet-api-eea diff --git a/libraries/slf4j-api/pom.xml b/libraries/slf4j-api/pom.xml index 4c247632..80016ace 100644 --- a/libraries/slf4j-api/pom.xml +++ b/libraries/slf4j-api/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT slf4j-api-eea diff --git a/libraries/spring/pom.xml b/libraries/spring/pom.xml index 7c0b1fc1..69804aaa 100644 --- a/libraries/spring/pom.xml +++ b/libraries/spring/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT spring-eea diff --git a/libraries/xstream/pom.xml b/libraries/xstream/pom.xml index d08e3df5..d8eeb9ce 100644 --- a/libraries/xstream/pom.xml +++ b/libraries/xstream/pom.xml @@ -7,7 +7,7 @@ org.lastnpe.eea eea-parent - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT xstream-eea diff --git a/pom.xml b/pom.xml index fac9ba8c..4b21d111 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.lastnpe.eea eea-root - 2.5.0-SNAPSHOT + 3.0.0-SNAPSHOT pom @@ -32,7 +32,13 @@ vorburger Michael Vorburger mike@vorburger.ch - http://www.vorburger.ch + https://www.vorburger.ch + + + sebthom + Sebastian Thomschke + Vegard IT GmbH + https://vegardit.com From 09f2ede6004232e28dca086c02b5fe800d67ef55 Mon Sep 17 00:00:00 2001 From: sebthom Date: Mon, 26 Aug 2024 18:32:41 +0200 Subject: [PATCH 6/6] docs: update code of conduct from v1.4 to v2.1 Signed-off-by: sebthom --- CODE_OF_CONDUCT.md | 128 +++++++++++++++++++++++++++++++++++++-------- 1 file changed, 107 insertions(+), 21 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index c53d597d..aa14c3f3 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -2,45 +2,131 @@ ## 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. +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. ## Our Standards -Examples of behavior that contributes to creating a positive environment include: +Examples of behavior that contributes to a positive environment for our +community 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 +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall + community -Examples of unacceptable behavior by participants include: +Examples of unacceptable behavior include: -* The use of sexualized language or imagery and unwelcome sexual attention or advances -* Trolling, insulting/derogatory comments, and personal or political attacks +* The use of sexualized language or imagery, and sexual attention or advances of + any kind +* Trolling, insulting or 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 +* Publishing others' private information, such as a physical or email address, + without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting -## Our Responsibilities +## Enforcement 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. +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. -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. +Community leaders 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, and will communicate reasons for moderation +decisions when appropriate. ## 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. +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at michael.vorburger+github-code-of-conduct@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems 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. +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +michael.vorburger+github-code-of-conduct@gmail.com +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of +actions. -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. +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. ## 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] +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.1, available at +[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at +[https://www.contributor-covenant.org/translations][translations]. -[homepage]: http://contributor-covenant.org -[version]: http://contributor-covenant.org/version/1/4/ +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations