|
1 | 1 | MAX_DISPLAY_SIZE = 300000 |
2 | | -MAX_FILE_SIZE = 10000000 |
3 | 2 | TMP_BASE_PATH = "../tmp" |
4 | | -CLONE_TIMEOUT = 20 |
5 | | - |
6 | | -DEFAULT_IGNORE_PATTERNS = [ |
7 | | - '*.pyc', '*.pyo', '*.pyd', '__pycache__', # Python |
8 | | - 'node_modules', 'bower_components', # JavaScript |
9 | | - '.git', '.svn', '.hg', '.gitignore', # Version control |
10 | | - '*.svg', '*.png', '*.jpg', '*.jpeg', '*.gif', # Images |
11 | | - 'venv', '.venv', 'env', # Virtual environments |
12 | | - '.idea', '.vscode', # IDEs |
13 | | - '*.log', '*.bak', '*.swp', '*.tmp', # Temporary files |
14 | | - '.DS_Store', # macOS |
15 | | - 'Thumbs.db', # Windows |
16 | | - 'build', 'dist', # Build directories |
17 | | - '*.egg-info', # Python egg info |
18 | | - '*.so', '*.dylib', '*.dll', # Compiled libraries |
19 | | - 'package-lock.json', 'yarn.lock', # Package lock files |
20 | | - 'pnpm-lock.yaml', 'npm-shrinkwrap.json', # More package lock files |
21 | | - 'COPYING.*', 'COPYRIGHT', # More license-related files |
22 | | - 'AUTHORS', 'AUTHORS.*', # Author files |
23 | | - 'CONTRIBUTORS', 'CONTRIBUTORS.*', # Contributor files |
24 | | - 'THANKS', 'THANKS.*', # Acknowledgment files |
25 | | - 'CHANGELOG', 'CHANGELOG.*', # Change logs |
26 | | - 'CONTRIBUTING', 'CONTRIBUTING.*' # Contribution guidelines |
27 | | -] |
28 | 3 |
|
29 | 4 | EXAMPLE_REPOS = [ |
30 | 5 | {"name": "Gitingest", "url": "https://github.com/cyclotruc/gitingest"}, |
|
0 commit comments