-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added template and adhere to standard coding practice (#62)
- Loading branch information
Showing
33 changed files
with
573 additions
and
53 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,35 @@ | ||
## Description of changes: | ||
|
||
<!-- | ||
Please briefly describe your change, including what problem the change fixes, and any context | ||
necessary for understanding the change | ||
--> | ||
|
||
## Issue #, if available: | ||
|
||
<!-- | ||
Please include any issues related to this pull request, including 'Fixes' if the issue is resolved | ||
by this pull request. | ||
Example: | ||
- Fixes #42 | ||
- Related to #1234 | ||
--> | ||
|
||
## Merge Checklist: | ||
_Put an `x` without space in the boxes that apply. If you are unsure about any checklist, please don't hesitate to ask. We are here to help! This is simply a reminder of what we are going to look for before merging your pull request._ | ||
|
||
### General | ||
- [ ] I have read the [contributor guidelines](https://github.com/mosaicml/streaming/blob/main/CONTRIBUTING.md) | ||
- [ ] This is a documentation change or typo fix. If so, skip the rest of this checklist. | ||
- [ ] I certify that the changes I am introducing will be backward compatible, and I have discussed concerns about this, if any, with the MosaicML team. | ||
- [ ] I have updated any necessary documentation, including [README](https://github.com/mosaicml/streaming/blob/main/README.md) and [API docs](https://github.com/mosaicml/streaming/tree/main/docs) (if appropriate). | ||
|
||
### Tests | ||
- [ ] I ran `pre-commit` on my change. (check out the `pre-commit` section of [prerequisites](https://github.com/mosaicml/streaming/blob/main/CONTRIBUTING.md#prerequisites)) | ||
- [ ] I have added tests that prove my fix is effective or that my feature works (if appropriate). | ||
- [ ] I ran the tests locally to make sure it pass. (check out [testing](https://github.com/mosaicml/streaming/blob/main/CONTRIBUTING.md#running-tests)) | ||
- [ ] I have added unit and/or integration tests as appropriate to ensure backward compatibility of the changes. | ||
|
||
<!-- | ||
Thanks so much for contributing to Streaming! We really appreciate it :) | ||
--> |
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
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
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
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
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
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,40 @@ | ||
yaml-files: | ||
- "*.yaml" | ||
- "*.yml" | ||
- .yamllint | ||
|
||
rules: | ||
braces: | ||
forbid: non-empty | ||
brackets: | ||
forbid: false | ||
colons: enable | ||
commas: enable | ||
comments: | ||
level: warning | ||
comments-indentation: enable | ||
document-end: | ||
present: false | ||
document-start: | ||
present: false | ||
empty-lines: enable | ||
empty-values: disable | ||
hyphens: enable | ||
indentation: | ||
spaces: 2 | ||
indent-sequences: true | ||
check-multi-line-strings: false | ||
key-duplicates: enable | ||
key-ordering: disable | ||
line-length: | ||
max: 200 | ||
allow-non-breakable-words: true | ||
allow-non-breakable-inline-mappings: true | ||
new-line-at-end-of-file: enable | ||
new-lines: enable | ||
octal-values: enable | ||
quoted-strings: | ||
quote-type: double | ||
required: false | ||
trailing-spaces: enable | ||
truthy: disable |
Validating CODEOWNERS rules …
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,3 @@ | ||
# Require admin approval to modify all files in the root of the repository | ||
# This includes setup.py, the README, and the CODEOWNERS file itself! | ||
/* @knighton @karan6181 @bandish-shah |
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,5 @@ | ||
# Community Guidelines | ||
|
||
This repository is governed by MosaicML's community guidelines and code of conduct. | ||
For more details, including information on how to report issues affecting the community, please read the | ||
[MosaicML Community Guidelines](https://docs.google.com/document/d/1h8S9x9bCTsA_H8ourZJy3SQVWy-6z7i28TP5rcZt8RI/edit) and the [MosaicML Code of Conduct](https://docs.google.com/document/d/1aCaMLO65qfMaqP3uDYiUsTauMvBrSKd7qgeYqz458Ew/edit). |
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,2 @@ | ||
global-exclude **/__pycache__/** | ||
global-exclude *.pyc |
Oops, something went wrong.