Whether reporting bugs, discussing improvements and new ideas: Contributions to ES21 are welcome! Here's how to get started:
- Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug
- Fork the repository on GitHub, create a new branch off the master branch and start making your changes
- Send a pull request and bug the maintainer until it gets merged and published :)
ES21 aims to be simple and fun to use. Flask application is very modulable. These modularity will contradict each other from time to time. In these cases, try using as little magic as possible. In any case don't forget documenting code that isn't clear at first glance.
In general the ES21 source should always follow PEP 8. Exceptions are allowed in well justified and documented cases. However we make a small exception concerning docstrings:
When using multiline docstrings, keep the opening and closing triple quotes on their own lines and add an empty line after it.
def some_function():
"""
Documentation ...
"""
# implementation ...
ES21 follows the SemVer versioning guidelines. This implies that backwards incompatible changes in the API will increment the major version. So think twice before making such changes.