Skip to content

Commit b704688

Browse files
authored
Merge pull request #1 from AshhadDevLab/AshhadDevLab-patch-1
Initital Commit: Added required files
2 parents cd0f47d + 736157c commit b704688

File tree

3 files changed

+67
-0
lines changed

3 files changed

+67
-0
lines changed

CONTRIBUTING.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Contribution Guidelines
2+
3+
Thank you for considering contributing to our Python Customtkiner snippets repository! I welcome any contributions that enhance the collection and make it more valuable for the community.
4+
5+
## How to Contribute
6+
7+
1. Fork the repository to your GitHub account.
8+
2. Clone the forked repository to your local machine:
9+
```
10+
git clone https://github.com/AshhadDevLab/Customtkiner-Snippets.git
11+
```
12+
3. Create a new branch for your changes:
13+
```
14+
git checkout -b feature/your-feature
15+
```
16+
4. Make your changes and commit them with descriptive commit messages.
17+
5. Push your changes to your forked repository:
18+
```
19+
git push origin feature/your-feature
20+
```
21+
6. Open a pull request from your forked repository to the main repository, describing the changes you've made and their purpose.
22+
23+
## Contribution Guidelines
24+
25+
- Ensure your code adheres to Python's [PEP 8 style guide](https://www.python.org/dev/peps/pep-0008/).
26+
- Each snippet should be self-contained and focused on a specific aspect of Customtkiner.
27+
- Provide clear comments explaining the purpose and usage of the snippet.
28+
- If applicable, include a brief example or demonstration of the snippet's functionality.
29+
- Update the README.md file to reflect any new additions or changes.
30+
- Test your snippets thoroughly to ensure they work as expected.
31+
32+
I appreciate your contributions and look forward to making this repository a valuable resource for the Python Customtkiner community!

example.py

Whitespace-only changes.

package.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "customtkinter-snippets",
3+
"displayName": "Customtkinter Snippets",
4+
"description": "A curated collection of Python customtkinter snippets for building interactive GUI applications effortlessly.",
5+
"version": "1.0.0",
6+
"engines": {
7+
"vscode": "^1.81.0"
8+
},
9+
"categories": [
10+
"Snippets"
11+
],
12+
"publisher": "AshhadDevLab",
13+
"icon": "icons/logo.png",
14+
"author": {
15+
"name": "Ashhad Ahmed",
16+
"email": "[email protected]",
17+
"url": "https://github.com/AshhadDevLab"
18+
},
19+
"repository": {
20+
"url": "https://github.com/AshhadDevLab/Customtkinter-Snippets",
21+
"type": "git"
22+
},
23+
"contributes": {
24+
"snippets": [
25+
{
26+
"language": "javascript",
27+
"path": "./snippets/customtkinter-snippets.code-snippets"
28+
},
29+
{
30+
"language": "typescript",
31+
"path": "./snippets/customtkinter-snippets.code-snippets"
32+
}
33+
]
34+
}
35+
}

0 commit comments

Comments
 (0)