The palindrome scanner
Escalindomo is a tool for scan and search panlindromes in words or complete phrases, including a history section to know how much tries have you done.
- Using as reference Conventional Commits
- Every commit should have a sign with the contributor's GPG key
- The basic structure should be
[{ type in uppercase }] { description using imperative writing style or writing as a if it were a command }"
, for example:[UPDATE] header component with a new one more darker
- For the types we have:
[UPDATE]
: when we need to add a new feature, tests or change a property.[FIX]
: to implement the code necessary to fix a problem.[DELETE]
: when a file is going to be deleted and not replaced.[BREAKING CHANGE] or !
: to implement changes that are going to affect the integration with other services, for example:[UPDATE]! API version to v2 for new endpoints
- Fork the project: by clicking the fork button (located at the top right corner)
- Clone the project on your device:
git clone https://github.com/<your username>/Escalindromo.git
- Do the necessary improvements and make a commit:
git commit -am "<commit message>"
or usegit add .
and thengit commit -m "<commit message>"
- Upload changes to the repository created with the fork:
git push origin <branch name>
- Create a pull request to the original project.