Skip to content

Commit def8b01

Browse files
committed
chore: enhance .gitignore to preserve shadcn utils (#26)
1 parent 0cfa7f7 commit def8b01

File tree

1 file changed

+24
-59
lines changed

1 file changed

+24
-59
lines changed

.gitignore

Lines changed: 24 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,37 @@
1+
# Generated by Cargo
2+
# Will generate .rs.bk on Cargo update
3+
**/*.rs.bk
4+
5+
# If you don't want to store bench binary in repository
6+
# Ignore build artifacts by default
17
/target
28

3-
# Byte-compiled / optimized / DLL files
4-
__pycache__/
5-
.pytest_cache/
6-
*.py[cod]
9+
# If you use trybuild
10+
# https://github.com/dtolnay/trybuild#how-to-work-around-this
11+
**/*.stderr
712

8-
# C extensions
9-
*.so
13+
# If you're into screenshots
14+
# https://doc.rust-lang.org/cargo/guide/project-layout.html#output-files
15+
**/*.png
16+
**/*.dot
1017

11-
# Distribution / packaging
12-
.Python
13-
.venv/
14-
env/
15-
bin/
16-
build/
17-
develop-eggs/
18+
# Distribution Build Artifacts
19+
artifacts/
1820
dist/
19-
eggs/
20-
lib/
21-
lib64/
22-
parts/
23-
sdist/
24-
var/
25-
include/
26-
man/
27-
venv/
28-
*.egg-info/
29-
.installed.cfg
30-
*.egg
31-
32-
# Installer logs
33-
pip-log.txt
34-
pip-delete-this-directory.txt
35-
pip-selfcheck.json
36-
37-
# Unit test / coverage reports
38-
htmlcov/
39-
.tox/
40-
.coverage
41-
.cache
42-
nosetests.xml
43-
coverage.xml
44-
45-
# Translations
46-
*.mo
4721

48-
# Mr Developer
49-
.mr.developer.cfg
50-
.project
51-
.pydevproject
52-
53-
# Rope
54-
.ropeproject
55-
56-
# Django stuff:
57-
*.log
58-
*.pot
22+
# Python
23+
__pycache__/
24+
*.pyc
5925

26+
# macOS
6027
.DS_Store
6128

62-
# Sphinx documentation
63-
docs/_build/
64-
65-
# PyCharm
66-
.idea/
29+
# Node
30+
node_modules/
6731

68-
# VSCode
69-
.vscode/
32+
# docs
33+
# Avoid ignoring shadcn utils
34+
!demo/harmony-demo/src/lib
7035

7136
# Pyenv
7237
.python-version

0 commit comments

Comments
 (0)