mirror of https://github.com/Askill/claude.git
gitignore platform specific cython-generated files
Prevent platform specific cython files from being tracked in repo in the future by adding them to a gitignore. The rules should be strict enough to avoid anything that shouldn't be blocked being blocked, but this also means that if more statically compiled files are added in the future, they may need to be added to the rules.
This commit is contained in:
parent
d3de7b14c9
commit
c14339329e
|
|
@ -427,3 +427,8 @@ TSWLatexianTemp*
|
|||
*.glstex
|
||||
|
||||
# End of https://www.toptal.com/developers/gitignore/api/python,tex
|
||||
|
||||
# Platform specific - compiled python (through cython)
|
||||
claude_*_level_library*.pyd
|
||||
# and the code it's generated from
|
||||
claude_*_level_library.c
|
||||
|
|
|
|||
Loading…
Reference in New Issue