[Sweep Rules] Fix commit message format in Search.jsx #164
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Feedback (click)
I created this PR to address this rule:
"Follow this format for all commit messages:
Type can be one of the following:
front
: Frontendback
: Backenddeploy
: DeploymentOr leave it blank if the commit is not specific to any of the above.
Ensure the commit message is concise yet descriptive.
If the commit fixes an issue, add the issue number in the commit message.
"
Description
This PR fixes the commit message format in the
Search.jsx
file to adhere to the required template specified in theCONTRIBUTING.md
file. The existing commit message format has been updated to match the required format, ensuring consistency and clarity in the commit history.Summary of Changes
Search.jsx
file to follow the required template.<Type>
is one of the following:front
,back
,deploy
, or left it blank if the commit is not specific to any of the above.<Topic>
with a concise yet descriptive topic for the commit.<Description>
with a detailed description of the changes made in the commit.[Issue: #<GitHub Issue Number>]
section to reference the GitHub issue number that the commit is related to.Signed-off-by: <Your Name> <Your Email>
section to indicate the author of the commit.Please review and merge this PR to ensure consistent commit message formatting in the
Search.jsx
file.