mirror of https://github.com/explosion/spaCy.git
Tidy up .gitignore
This commit is contained in:
parent
532927a3c4
commit
57beef5d36
|
@ -1,50 +1,43 @@
|
||||||
# Vim
|
# spaCy
|
||||||
*.swp
|
spacy/data/
|
||||||
*.sw*
|
|
||||||
Profile.prof
|
|
||||||
tmp/
|
|
||||||
.dev
|
|
||||||
.denv
|
|
||||||
.pypyenv
|
|
||||||
.eggs
|
|
||||||
*.tgz
|
|
||||||
.sass-cache
|
|
||||||
.python-version
|
|
||||||
|
|
||||||
MANIFEST
|
|
||||||
|
|
||||||
corpora/
|
corpora/
|
||||||
models/
|
models/
|
||||||
keys/
|
keys/
|
||||||
|
|
||||||
spacy/syntax/*.cpp
|
# Website
|
||||||
spacy/syntax/*.html
|
website/www/
|
||||||
spacy/en/*.cpp
|
website/_deploy.sh
|
||||||
spacy/tokens/*.cpp
|
website/package.json
|
||||||
spacy/serialize/*.cpp
|
website/announcement.jade
|
||||||
spacy/en/data/*
|
website/.gitignore
|
||||||
spacy/*.cpp
|
|
||||||
spacy/ner/*.cpp
|
|
||||||
spacy/orthography/*.cpp
|
|
||||||
ext/murmurhash.cpp
|
|
||||||
ext/sparsehash.cpp
|
|
||||||
|
|
||||||
/spacy/data/
|
# Cython / C extensions
|
||||||
|
|
||||||
_build/
|
|
||||||
.env/
|
|
||||||
tmp/
|
|
||||||
cythonize.json
|
cythonize.json
|
||||||
|
spacy/*.html
|
||||||
# Byte-compiled / optimized / DLL files
|
*.cpp
|
||||||
__pycache__/
|
|
||||||
*.py[cod]
|
|
||||||
|
|
||||||
# C extensions
|
|
||||||
*.so
|
*.so
|
||||||
|
|
||||||
# Distribution / packaging
|
# Vim / VSCode / editors
|
||||||
|
*.swp
|
||||||
|
*.sw*
|
||||||
|
Profile.prof
|
||||||
|
.vscode
|
||||||
|
.sass-cache
|
||||||
|
|
||||||
|
# Python
|
||||||
.Python
|
.Python
|
||||||
|
.python-version
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
.env/
|
||||||
|
.~env/
|
||||||
|
.venv
|
||||||
|
venv/
|
||||||
|
.dev
|
||||||
|
.denv
|
||||||
|
.pypyenv
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
env/
|
env/
|
||||||
bin/
|
bin/
|
||||||
build/
|
build/
|
||||||
|
@ -59,6 +52,12 @@ var/
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
.installed.cfg
|
.installed.cfg
|
||||||
*.egg
|
*.egg
|
||||||
|
.eggs
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# Temporary files
|
||||||
|
*.~*
|
||||||
|
tmp/
|
||||||
|
|
||||||
# Installer logs
|
# Installer logs
|
||||||
pip-log.txt
|
pip-log.txt
|
||||||
|
@ -87,25 +86,16 @@ coverage.xml
|
||||||
*.log
|
*.log
|
||||||
*.pot
|
*.pot
|
||||||
|
|
||||||
# Windows local helper files
|
# Windows
|
||||||
*.bat
|
*.bat
|
||||||
|
Thumbs.db
|
||||||
|
Desktop.ini
|
||||||
|
|
||||||
# Mac OS X
|
# Mac OS X
|
||||||
*.DS_Store
|
*.DS_Store
|
||||||
|
|
||||||
# Temporary files / Dropbox hack
|
|
||||||
*.~*
|
|
||||||
|
|
||||||
# Komodo project files
|
# Komodo project files
|
||||||
*.komodoproject
|
*.komodoproject
|
||||||
|
|
||||||
# Website
|
# Other
|
||||||
website/_deploy.sh
|
*.tgz
|
||||||
website/package.json
|
|
||||||
website/announcement.jade
|
|
||||||
website/www/
|
|
||||||
website/.gitignore
|
|
||||||
|
|
||||||
# Python virtualenv
|
|
||||||
venv
|
|
||||||
venv/*
|
|
||||||
|
|
Loading…
Reference in New Issue