File tree Expand file tree Collapse file tree 3 files changed +67
-0
lines changed
Expand file tree Collapse file tree 3 files changed +67
-0
lines changed Original file line number Diff line number Diff line change 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!
Original file line number Diff line number Diff line change 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+ 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+ }
You can’t perform that action at this time.
0 commit comments