Joe Shamon commited on
Commit
dc781f8
·
unverified ·
2 Parent(s): cfedaf6 153d567

Merge pull request #9 from CintraAI/chore/add-CONTRIBUTING-and-gitignore

Browse files
Files changed (2) hide show
  1. .gitignore +53 -0
  2. CONTRIBUTING.md +110 -0
.gitignore ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python cache files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ .Python
7
+ build/
8
+ develop-eggs/
9
+ dist/
10
+ downloads/
11
+ eggs/
12
+ .eggs/
13
+ lib/
14
+ lib64/
15
+ parts/
16
+ sdist/
17
+ var/
18
+ wheels/
19
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Code parser cache
24
+ ~/.code_parser_cache/
25
+ .code_parser_cache/
26
+
27
+ # Tree-sitter build artifacts
28
+ *.so
29
+ build/
30
+
31
+ # Virtual environments
32
+ venv/
33
+ env/
34
+ ENV/
35
+ .env/
36
+ .venv/
37
+ env.bak/
38
+ venv.bak/
39
+
40
+ # Editor/IDE files
41
+ .idea/
42
+ .vscode/
43
+ *.swp
44
+ *.swo
45
+ .DS_Store
46
+ .ipynb_checkpoints
47
+
48
+ # Local configuration
49
+ .local/
50
+ .history/
51
+
52
+ # Logs
53
+ *.log
CONTRIBUTING.md ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Contributing to Code Chunker
2
+
3
+ Thank you for your interest in contributing to Code Chunker! This document provides guidelines and information for contributing to this project.
4
+
5
+ ## Table of Contents
6
+ - [Code of Conduct](#code-of-conduct)
7
+ - [Getting Started](#getting-started)
8
+ - [How to Contribute](#how-to-contribute)
9
+ - [Development Setup](#development-setup)
10
+ - [Pull Request Process](#pull-request-process)
11
+ - [Testing Guidelines](#testing-guidelines)
12
+ - [Style Guidelines](#style-guidelines)
13
+
14
+ ## Code of Conduct
15
+
16
+ By participating in this project, you agree to maintain a respectful and inclusive environment. We expect all contributors to:
17
+ - Use welcoming and inclusive language
18
+ - Be respectful of differing viewpoints and experiences
19
+ - Gracefully accept constructive criticism
20
+ - Focus on what is best for the community
21
+
22
+ ## Getting Started
23
+
24
+ 1. Fork the repository
25
+ 2. Clone your fork locally
26
+ 3. Create a new branch for your feature or bugfix
27
+ 4. Make your changes following our guidelines
28
+ 5. Push to your fork
29
+ 6. Submit a Pull Request
30
+
31
+ ## How to Contribute
32
+
33
+ There are several ways to contribute to Code Chunker:
34
+
35
+ 1. **Bug Reports**: Submit detailed bug reports using the GitHub issue tracker
36
+ 2. **Feature Requests**: Propose new features through GitHub issues
37
+ 3. **Code Contributions**: Submit Pull Requests with improvements or new features
38
+ 4. **Documentation**: Help improve or translate documentation
39
+ 5. **Testing**: Add or improve test coverage
40
+
41
+ ## Pull Request Process
42
+
43
+ 1. Update the README.md with details of changes if applicable
44
+ 2. Add appropriate unit tests for any new functionality
45
+ 3. Ensure all tests pass by running:
46
+ ```bash
47
+ python -m unittest discover
48
+ ```
49
+ 4. Update documentation as needed
50
+ 5. Ensure your code follows our style guidelines
51
+ 6. Create a Pull Request with a clear title and description
52
+
53
+ ## Testing Guidelines
54
+
55
+ - Write unit tests for all new functionality
56
+ - Maintain or improve code coverage
57
+ - Follow the existing test structure in `test_code_chunker.py`
58
+ - Test multiple file types and edge cases
59
+ - Include both positive and negative test cases
60
+
61
+ ### Test Examples
62
+ - Test basic functionality with simple code files
63
+ - Test edge cases (empty files, large files)
64
+ - Test different programming languages (Python, JavaScript, CSS, etc.)
65
+ - Test with various token limits
66
+ - Test error handling scenarios
67
+
68
+ ## Style Guidelines
69
+
70
+ ### Python Code Style
71
+ - Follow PEP 8 guidelines
72
+ - Use type hints for function parameters and return values
73
+ - Keep functions focused and single-purpose
74
+ - Write clear docstrings for classes and functions
75
+ - Use meaningful variable and function names
76
+
77
+ ### Code Organization
78
+ - Keep related functionality together
79
+ - Maintain clear separation of concerns
80
+ - Follow the existing project structure
81
+ - Use appropriate design patterns
82
+
83
+ ## Language Support
84
+
85
+ When adding support for new programming languages:
86
+ 1. Update the `language_extension_map` in `CodeParser.py`
87
+ 2. Add appropriate node types in `_get_node_types_of_interest`
88
+ 3. Include test files for the new language
89
+ 4. Update documentation accordingly
90
+
91
+ ## Documentation
92
+
93
+ - Keep README.md up to date
94
+ - Document all new features
95
+ - Include docstrings for new functions and classes
96
+ - Add comments for complex logic
97
+ - Update API documentation if applicable
98
+
99
+ ## Questions or Need Help?
100
+
101
+ Feel free to:
102
+ - Open an issue for general questions
103
+ - Join our discussions in GitHub Discussions
104
+ - Reach out to maintainers for guidance
105
+
106
+ ## License
107
+
108
+ By contributing to Code Chunker, you agree that your contributions will be licensed under the same license as the main project.
109
+
110
+ Thank you for contributing to Code Chunker!