-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy path.gitignore
More file actions
22 lines (20 loc) · 888 Bytes
/
.gitignore
File metadata and controls
22 lines (20 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/.temp/
/dist/
/node_modules/
# These would be more appropriate in individual user's `.git/info/exclude`
# files, but must be here to work around <https://github.com/biomejs/biome/issues/4822>.
/.direnv
/.envrc
# This file should not exist in this repo unless created by accident, which in
# theory is no different than any other file created by accident.
#
# However, we *used* to use `package-lock.json` in this repo, and there are some
# unfortunate interactions between JS ecosystem tools and/or version control
# systems [^1] that make this kind of accident more likely. Preventing it from
# being committed should avoid more surprises than it can cause.
#
# See <https://github.com/cubing/icons/pull/156#discussion_r2271657477> for more
# details.
#
# [^1]: In particular `jj` is still lacking some guards against this: https://github.com/jj-vcs/jj/issues/5596
/package-lock.json