Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion cpp/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,17 @@ index.md
_template/labextension

# JS
js/node_modules
js/coverage
js/dist
js/lib
js/node_modules
{{module}}/extension

# Jupyter
.ipynb_checkpoints
.autoversion
{{module}}/nbextension
{{module}}/labextension

# Mac
.DS_Store
Expand Down
10 changes: 9 additions & 1 deletion js/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ __pycache__/
*$py.class

# C extensions
*.a
*.so
*.obj
*.dll
*.exp
*.lib

# Distribution / packaging
.Python
Expand Down Expand Up @@ -137,13 +141,17 @@ index.md
_template/labextension

# JS
js/node_modules
js/coverage
js/dist
js/lib
js/node_modules
{{module}}/extension

# Jupyter
.ipynb_checkpoints
.autoversion
{{module}}/nbextension
{{module}}/labextension

# Mac
.DS_Store
Expand Down
5 changes: 5 additions & 0 deletions jupyter/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ __pycache__/
*$py.class

# C extensions
*.a
*.so
*.obj
*.dll
*.exp
*.lib

# Distribution / packaging
.Python
Expand Down Expand Up @@ -141,6 +145,7 @@ js/coverage
js/dist
js/lib
js/node_modules
{{module}}/extension

# Jupyter
.ipynb_checkpoints
Expand Down
14 changes: 13 additions & 1 deletion rust/.gitignore → python/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ __pycache__/
*$py.class

# C extensions
*.a
*.so
*.obj
*.dll
*.exp
*.lib

# Distribution / packaging
.Python
Expand Down Expand Up @@ -136,13 +140,21 @@ docs/jupyter_execute
index.md
_template/labextension

# JS
js/coverage
js/dist
js/lib
js/node_modules
{{module}}/extension

# Jupyter
.ipynb_checkpoints
.autoversion
{{module}}/nbextension
{{module}}/labextension

# Mac
.DS_Store

# Rust
target

18 changes: 17 additions & 1 deletion python/.gitignore → rust/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ __pycache__/
*$py.class

# C extensions
*.a
*.so
*.obj
*.dll
*.exp
*.lib

# Distribution / packaging
.Python
Expand Down Expand Up @@ -131,14 +135,26 @@ docs/_build/
docs/src/_build/
docs/api
docs/index.md
docs/html
docs/jupyter_execute
index.md
_template/labextension

# JS
js/coverage
js/dist
js/lib
js/node_modules
{{module}}/extension

# Jupyter
.ipynb_checkpoints
.autoversion
{{module}}/nbextension
{{module}}/labextension

# Mac
.DS_Store

# Rust
target

Loading