Skip to content

Commit 87f6b92

Browse files
committed
Remove _version from VCS as instructed by the file
1 parent 6a31cc1 commit 87f6b92

File tree

2 files changed

+92
-20
lines changed

2 files changed

+92
-20
lines changed

.gitignore

Lines changed: 92 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
11
*.bundle.*
22
lib/
33
node_modules/
4+
*.log
5+
.eslintcache
6+
.stylelintcache
47
*.egg-info/
58
.ipynb_checkpoints
69
*.tsbuildinfo
710
jupyterlab_code_formatter/labextension
11+
# Version file is handled by hatchling
12+
jupyterlab_code_formatter/_version.py
813

14+
# Integration tests
15+
ui-tests/test-results/
16+
ui-tests/playwright-report/
17+
18+
# Created by https://www.gitignore.io/api/python
19+
# Edit at https://www.gitignore.io/?templates=python
20+
21+
### Python ###
922
# Byte-compiled / optimized / DLL files
1023
__pycache__/
1124
*.py[cod]
25+
*$py.class
1226

13-
.idea/
14-
15-
.vscode/
16-
17-
*.swp
18-
venv/
19-
.venv/
20-
21-
**/.hypothesis/
22-
.Rhistory
23-
build/
24-
25-
**/dist/
26-
27+
# C extensions
28+
*.so
2729

2830
# Distribution / packaging
2931
.Python
@@ -44,5 +46,79 @@ share/python-wheels/
4446
.installed.cfg
4547
*.egg
4648
MANIFEST
47-
tsconfig.tsbuildinfo
48-
npm-tmp/
49+
50+
# PyInstaller
51+
# Usually these files are written by a python script from a template
52+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
53+
*.manifest
54+
*.spec
55+
56+
# Installer logs
57+
pip-log.txt
58+
pip-delete-this-directory.txt
59+
60+
# Unit test / coverage reports
61+
htmlcov/
62+
.tox/
63+
.nox/
64+
.coverage
65+
.coverage.*
66+
.cache
67+
nosetests.xml
68+
coverage/
69+
coverage.xml
70+
*.cover
71+
.hypothesis/
72+
.pytest_cache/
73+
74+
# Translations
75+
*.mo
76+
*.pot
77+
78+
# Scrapy stuff:
79+
.scrapy
80+
81+
# Sphinx documentation
82+
docs/_build/
83+
84+
# PyBuilder
85+
target/
86+
87+
# pyenv
88+
.python-version
89+
90+
# celery beat schedule file
91+
celerybeat-schedule
92+
93+
# SageMath parsed files
94+
*.sage.py
95+
96+
# Spyder project settings
97+
.spyderproject
98+
.spyproject
99+
100+
# Rope project settings
101+
.ropeproject
102+
103+
# Mr Developer
104+
.mr.developer.cfg
105+
.project
106+
.pydevproject
107+
108+
# mkdocs documentation
109+
/site
110+
111+
# mypy
112+
.mypy_cache/
113+
.dmypy.json
114+
dmypy.json
115+
116+
# Pyre type checker
117+
.pyre/
118+
119+
# End of https://www.gitignore.io/api/python
120+
121+
# OSX files
122+
.DS_Store
123+
124+
.idea/

jupyterlab_code_formatter/_version.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)