Skip to content

Commit ded37af

Browse files
authored
Merge pull request #2127 from skanda890/main
Update Code of Conduct, Contributing Guidelines and Security.md
2 parents fbb3016 + 1c6fc58 commit ded37af

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

CODE_OF_CONDUCT.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Our Pledge
44

5-
We as members, contributors, and leaders pledge to make participation in our
5+
We as members, contributors, and leaders pledge to participate in our
66
community a harassment-free experience for everyone, regardless of age, body
77
size, visible or invisible disability, ethnicity, sex characteristics, gender
88
identity and expression, level of experience, education, socio-economic status,
@@ -15,7 +15,7 @@ diverse, inclusive, and healthy community.
1515
## Our Standards
1616

1717
Examples of behavior that contributes to a positive environment for our
18-
community include:
18+
community includes:
1919

2020
* Demonstrating empathy and kindness toward other people
2121
* Being respectful of differing opinions, viewpoints, and experiences
@@ -33,7 +33,7 @@ Examples of unacceptable behavior include:
3333
* Public or private harassment
3434
* Publishing others' private information, such as a physical or email
3535
address, without their explicit permission
36-
* Other conduct which could reasonably be considered inappropriate in a
36+
* Other conduct that could reasonably be considered inappropriate in a
3737
professional setting
3838

3939
## Enforcement Responsibilities
@@ -50,7 +50,7 @@ decisions when appropriate.
5050

5151
## Scope
5252

53-
This Code of Conduct applies within all community spaces, and also applies when
53+
This Code of Conduct applies within all community spaces and also applies when
5454
an individual is officially representing the community in public spaces.
5555
Examples of representing our community include using an official e-mail address,
5656
posting via an official social media account, or acting as an appointed
@@ -87,7 +87,7 @@ of actions.
8787

8888
**Consequence**: A warning with consequences for continued behavior. No
8989
interaction with the people involved, including unsolicited interaction with
90-
those enforcing the Code of Conduct, for a specified period of time. This
90+
those enforcing the Code of Conduct, for a specified period. This
9191
includes avoiding interactions in community spaces as well as external channels
9292
like social media. Violating these terms may lead to a temporary or
9393
permanent ban.
@@ -98,7 +98,7 @@ permanent ban.
9898
sustained inappropriate behavior.
9999

100100
**Consequence**: A temporary ban from any sort of interaction or public
101-
communication with the community for a specified period of time. No public or
101+
communication with the community for a specified period. No public or
102102
private interaction with the people involved, including unsolicited interaction
103103
with those enforcing the Code of Conduct, is allowed during this period.
104104
Violating these terms may lead to a permanent ban.

CONTRIBUTING.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ This repository **respects** people, despite their race, gender, religion, heigh
33

44
-------------------------------------------------------------
55

6-
### DO NOT publish garbage PRs to farm Crypto AirDrops. Any user suspected of this actions will get banned. Submitting broken code wastes the time of the contributors, who have to spend their free time reviewing, fixing and testing code that does not even compile, does break other functionality or does not introduce any changes at all.
6+
### DO NOT publish garbage PRs to farm Crypto AirDrops. Any user suspected of this action will get banned. Submitting broken code wastes the time of the contributors, who have to spend their free time reviewing, fixing, and testing code that does not even compile, does not break other functionality, or does not introduce any changes at all.
77

88
---------------------------------
99

1010

1111

1212
# Contributing guidelines:
1313

14-
Before reading: All of the rules below are guidelines, what means that they should be followed when possible. Please do not take them literally.
14+
Before reading: All of the rules below are guidelines, which means that they should be followed when possible. Please do not take them literally.
1515

1616
## Discussions:
1717
- This is the place to post any questions/doubts regarding WingetUI. Issues and feature requests should be posted in the [issues section](https://github.com/marticliment/WingetUI/issues).
@@ -21,21 +21,21 @@ Before reading: All of the rules below are guidelines, what means that they shou
2121
#### Issues:
2222
- Please use the BUG/ISSUE template
2323
- Please be clear when describing issues.
24-
- Please DO fill the form and DO NOT send empty issues with the information on the title.
24+
- Please fill out the form and DO NOT send empty issues with the information on the title.
2525
- Please make sure to check for duplicates as said in the BUG/ISSUE template.
2626
- Please make sure to preceed titles with the `[BUG/ISSUE]` string, so they can be easily identified.
2727

2828
#### Feature requests:
2929
- Please use the FEATURE REQUEST template
3030
- Please detail how the feature should work. Please be as specific as possible.
31-
- Some features are difficult, and might take some time to get implemented. This project is made on the contribur's free time, so please do not post messages asking for ETAs or similar. Every feature request will be considered.
31+
- Some features are difficult and might take some time to get implemented. This project is made in the contributor's free time, so please do not post messages asking for ETAs or similar. Every feature request will be considered.
3232
- Please make sure to check for duplicates as said in the FEATURE REQUEST template.
3333
- Please make sure to preceed titles with the `[FEATURE REQUEST]` string, so they can be easily identified.
3434

3535
## Pull requests:
36-
- Please sppecify, either in the title or in the PR body text, the changes done.
37-
- _Improvements_ pull request should have a list of the changes done in the body message, despite they being listed in the commits or not.
38-
- Draft pull requests should be properly identified as [draft pull requests](https://github.blog/2019-02-14-introducing-draft-pull-requests/) to avoid confusions.
36+
- Please specify, either in the title or in the PR body text, the changes done.
37+
- _Improvements_ pull request should have a list of the changes done in the body message, whether they are listed in the commits or not.
38+
- Draft pull requests should be properly identified as [draft pull requests](https://github.blog/2019-02-14-introducing-draft-pull-requests/) to avoid confusion.
3939
- When modifying/coding, please follow the guidelines below:
4040

4141
## Coding:
@@ -45,10 +45,10 @@ Before reading: All of the rules below are guidelines, what means that they shou
4545
- Constants should be written in capital letters, using underscores for spaces:
4646
- Example: `SYSTEM_DEFAULT_LOCALE = "ca-ES"`
4747
- Please specify, when possible, variable data types and function return types. More info [here](https://python.plainenglish.io/specifying-data-types-in-python-c182fda3bf43)
48-
- Try to add spaces and empty newlines to make code more human readable.
48+
- Try to add spaces and empty newlines to make code more human-readable.
4949

5050
## Commits:
51-
- Commits must include only changes on one feature or section of the code. Let's say, you have fixed an issue regarding localisation and added a new entry in the settings section to change update frequency, those two changes must be committed separately.
51+
- Commits must include only changes on one feature or section of the code. Let's say, you have fixed an issue regarding localization and added a new entry in the settings section to change update frequency, those two changes must be committed separately.
5252
- The code in each commit should be executable. Please do not leave work unfinished across commits, or, if it is needed, let the code be executed without errors.
53-
- Commit names must be clear and self-explanatory, and, if applicable, must reference the corresponding issue.
53+
- Commit names must be self-explanatory, and, if applicable, must reference the corresponding issue.
5454

0 commit comments

Comments
 (0)