Thank you for considering to help this project.
We welcome all support, whether on bug reports, code, design, reviews, tests, documentation, and more.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
Requirements:
virtualenv
,pyenv
git clone [email protected]:thibaudcolas/curlylint.git
cd curlylint/
# Install required Python versions
pyenv install --skip-existing 3.6.8
# Make required Python versions available globally.
pyenv global system 3.6.8
# Install the Python environment.
virtualenv .venv -p python3.6
source ./.venv/bin/activate
make init
make help �# See what commands are available.
make init �# Install dependencies and initialise for development.
make lint �# Lint the project.
make format �# Format project files.
make test �# Test the project.
make clean-pyc �# Remove Python file artifacts.
make sdist �# Builds package version
make publish �# Publishes a new version to pypi.
make publish-test �# Publishes a new version to test pypi.
Curlylint is powered by Parsy. Parsy is an extremely powerful library and curlylint’s parser relies heavily on it. You have to read
Parsy’s documentation in order to understand what’s going on in
parse.py
.
- Make a new branch for the release of the new version.
- Update the CHANGELOG.
- Update the version number in
curlylint/__init__.py
, following semver. - Make a PR and squash merge it.
- Back on the
main
branch with the PR merged, usemake publish-test
(confirm, and enter your password, confirm everything good on test.pypi.org). - Back on the
main
branch with the PR merged, usemake publish
(confirm, and enter your password). - Finally, go to GitHub and create a release and a tag for the new version.
- Done!