Skip to content

Latest commit

 

History

History
59 lines (47 loc) · 2.77 KB

CONTRIBUTING.md

File metadata and controls

59 lines (47 loc) · 2.77 KB

Contributing

GitHub forks Number of issues Closed issues

Number of pull requests Closed pull requests

GitHub contributors

Last commit for development

Current tasks to be completed

  • NetworkValidator for LiveData

  • NetworkValidator for ReactiveX

  • Airplane mode listener

  • Have a new feature in mind?

  • Want to make changes and improvements to documentations and code?

  • Noticed an error?

  • Found a bug?

Contributions are welcome and encouraged!!

Make a fork of the repository and send a pull request.

Discussions about your code, logical decisions and proposed changes would be made before pushing to the main repository branch.

Concerning Issues

  • Before creating an issue, please verify if a pre-existing and similar issue already exists.
  • If an issue is closed and problem persists, you can reopen that same issue or create an entirely new issue.
  • Persistent bugs can be better illustrated using a unit/integrated test, demo project, JPG/JPEG file, GIF animation, stack traces and logs.

NOTE: When posting code blocks, logs or stack traces etc, please use Github flavoured markdown syntax to improve readability.

For Kotlin code blocks, KDoc comments with KDoc syntax are preferable.

Concerning Code Style

Consistent indentation plays an important role in readability and maintainability of code. The indentation currently used in this project is as follows:

fun correctIndent() {
	doSomethingHere {
		val x = "some string var"
	}
}

Wrong indentation:

fun inCorrectIndent() 
{
	doSomethingHere 
	{
		val x = "some string var"
	}
}

Please follow the correct indentation style.