Skip to content

YourWorld #1419

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
[![Banner](https://codecrafters.io/images/byox-banner.gif)](https://codecrafters.io/github-banner)
# ai
journey to learn new things every day using ai
https://desirelovell.com/
https://www.linkedin.com/in/desirelovell/
https://linktr.ee/desirelovell

### Languages and Tools:
![Python](https://img.shields.io/badge/-Python-3776AB?logo=python&logoColor=white&style=flat)
![JavaScript](https://img.shields.io/badge/-JavaScript-F7DF1E?logo=javascript&logoColor=black&style=flat)
![HTML](https://img.shields.io/badge/-HTML5-E34F26?logo=html5&logoColor=white&style=flat)
![CSS](https://img.shields.io/badge/-CSS3-1572B6?logo=css3&logoColor=white&style=flat)
Comment on lines +7 to +11
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Align heading levels and remove trailing punctuation
The "Languages and Tools:" heading is ###, which skips from an h1 to h3 (MD001) and includes a trailing colon (MD026). Change it to a second-level heading without punctuation for consistency.

- ### Languages and Tools:
+ ## Languages and Tools
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
### Languages and Tools:
![Python](https://img.shields.io/badge/-Python-3776AB?logo=python&logoColor=white&style=flat)
![JavaScript](https://img.shields.io/badge/-JavaScript-F7DF1E?logo=javascript&logoColor=black&style=flat)
![HTML](https://img.shields.io/badge/-HTML5-E34F26?logo=html5&logoColor=white&style=flat)
![CSS](https://img.shields.io/badge/-CSS3-1572B6?logo=css3&logoColor=white&style=flat)
## Languages and Tools
![Python](https://img.shields.io/badge/-Python-3776AB?logo=python&logoColor=white&style=flat)
![JavaScript](https://img.shields.io/badge/-JavaScript-F7DF1E?logo=javascript&logoColor=black&style=flat)
![HTML](https://img.shields.io/badge/-HTML5-E34F26?logo=html5&logoColor=white&style=flat)
![CSS](https://img.shields.io/badge/-CSS3-1572B6?logo=css3&logoColor=white&style=flat)
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

7-7: Heading levels should only increment by one level at a time
Expected: h2; Actual: h3

(MD001, heading-increment)


7-7: Trailing punctuation in heading
Punctuation: ':'

(MD026, no-trailing-punctuation)


<h2>Skills</h2>
<ul>
<li>Python</li>
<li>JavaScript</li>
<li>HTML & CSS</li>
</ul>[![Banner](https://codecrafters.io/images/byox-banner.gif)](https://codecrafters.io/github-banner)
Comment on lines +13 to +18
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

Use Markdown syntax for the Skills section
The Skills list uses HTML (<h2> and <ul>), which is inconsistent with the rest of the README. Replace it with native Markdown syntax and ensure proper spacing around elements.

- <h2>Skills</h2>
- <ul>
-     <li>Python</li>
-     <li>JavaScript</li>
-     <li>HTML & CSS</li>
- </ul>
+ ## Skills
+
+ - Python
+ - JavaScript
+ - HTML & CSS

Committable suggestion skipped: line range outside the PR's diff.


## Build your own &lt;insert-technology-here&gt;

Expand Down