Skip to content

Commit

Permalink
Syncing with master
Browse files Browse the repository at this point in the history
  • Loading branch information
prabhuomkar authored Apr 6, 2020
1 parent 4817d21 commit 7ec2f6b
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
## How to start

* Create issue using the issue templates provided by selecting from option after clicking new issue. This will allow us to know on what experiment you want to work and we can provide guidence/suggestion about it.
* After selecting issue template you will se some pre-written info in the description of issue fill that info. For every template the info needed may variey. If you have something more to add feel free to add in the issue.
* After selecting issue template you will se some pre-written info in the description of issue fill that info. For every template the info needed may vary. If you have something more to add feel free to add in the issue.
* You can start working on the issue after you are done creating one. Please follow the contribution guidelines while writing the code.
* Comment on the issue that you plan to work on so we can assign it to you and there isn't unnecessary duplication of work.
* If you're fixing some smaller issue - please check the list of pending Pull Requests to avoid unnecessary duplication.
Expand All @@ -27,7 +27,7 @@ You can help in multiple ways:

All contributions are done through Pull Requests here on GitHub.

Please follow the guidelines below:-
### Guidelines for PRs

* Submit all code changes via pull requests (PRs) rather than through a direct commit. PRs will be reviewed and potentially merged by the repo maintainers after a peer review that includes at least one maintainer.
* Make sure to add README for your code. A <a href="https://github.com/siesgstarena/labs/blob/master/README-template.md">README-template</a> has been provided for that purpose.
Expand All @@ -37,14 +37,22 @@ Please follow the guidelines below:-

We use [nblint](https://pypi.org/project/nblint/) for ensuring Labs is nice and easy to use and work on long-term.

## Linting

We use [nblint](https://pypi.org/project/nblint/) for Notebooks and [pylint](https://pypi.org/project/pylint/) for Python source files for ensuring Labs is nice and easy to use and work on long-term.

## Coding Style Changes

Please:
* **DO NOT** send PRs for style changes. For example, do not send PRs that are focused on changing usage of ```Int32``` to ```int```.
* **DO NOT** send PRs for upgrading code to use newer language features, though it's ok to use newer language features as part of new code that's written. For example, it's ok to use expression-bodied members as part of new code you write, but do not send a PR focused on changing existing properties or methods to use the feature.
Give priority to the current style of the project or file you're changing even if it diverges from the general guidelines.
### DON'T

* Send PRs for style changes. For example, do not send PRs that are focused on changing usage of ```Int32``` to ```int```.

### DO

* Send PRs for upgrading code to use newer language features as it's ok to use newer language features as part of new code that's written.

## Code Reviews

All submissions, including submissions by project members, require review. We use GitHub pull requests for this purpose. Consult [GitHub Help](https://help.github).
* All submissions, including submissions by project members, require review from maintainers of this repository.
* Don't worry, you will remain the owner and maintain essence of the code, we will provide suggestions on how to avoid redundancy and doing structuring of code which adher to certain guidelines of this repository.
* We use GitHub pull requests (PRs) for this purpose. Consult [GitHub Help](https://help.github.com) for learning about PR.

0 comments on commit 7ec2f6b

Please sign in to comment.