-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy path.gitignore
More file actions
114 lines (91 loc) · 2.71 KB
/
.gitignore
File metadata and controls
114 lines (91 loc) · 2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Hugo default output directory
/public
# Hugo generated resources directory. Note: if the generated files
# were checked into the repo, could improve build times. But since
# we rebuild as part of CI/CD deployments, we just don't check-in.
/resources
.DS_Store
__pycache__/
node_modules
# Prettier cache
node_modules/.cache/prettier/
*.map
# For us Vim folk.
*.swp
# These are for IntelliJ based tooling
.idea/
*.iml
# We use yarn instead of npm. If someone happens to use npm, a
# package-lock.json file will be created, which is redundant with
# yarn's yarn.lock file. We ignore package-lock.json to prevent
# it from being added mistakenly.
/package-lock.json
/theme/package-lock.json
# Python virtual env dirs.
venv/
.venv/
# Pipenv
.env
Pipfile.lock
.python-version
# Ignore the Stencil component bundle and auto-generated type declarations.
/static/js/components.js
/static/js/components/
theme/stencil/src/components.d.ts
# Ignore webpack-generated JS entry bundles and chunks in static/js/.
/static/js/bundle.*.js
/static/js/algolia.*.js
/static/js/marketing.*.js
/static/js/homepage.*.js
/static/js/chunk-*.js
# Ignore webpack-generated JS manifest for Hugo.
/data/js_manifest.json
# Ignore bundled CSS and JS files, which we write to the Hugo static
# directory in development in order to be able to use livereload.
static/css/styles.*.css
static/js/bundle.min.*.js
static/js/bundle.*.js
static/js/chunk-*.js
static/js/algolia.*.js
static/js/homepage.*.js
static/js/marketing.*.js
data/js_manifest.json
# Ignore webpack-generated assets from the build process.
/assets/css/
/assets/js/
# Ignore Cypress-generated content.
cypress/videos
cypress/screenshots
# Ignore the files we generate during the build and deployment process.
origin-bucket-metadata.json
redirects.txt
# Ignore vendored Hugo modules.
_vendor/
# Ignore Hugo build locks.
.hugo_build.lock
# Ignore registry-related build artifacts.
/content/registry/packages/*/api-docs
/static/registry
# Ignore log files.
/scripts/link-checker/pages-with-broken-links.txt
.doctrees/
.buildinfo
# VScode solution files.
*.sln
#Claude settings
**/.claude/settings.local.json
# mise local
mise.local.toml
# alias verification outputs
scripts/alias-verification/aliases-correct.txt
scripts/alias-verification/aliases-missing.txt
scripts/alias-verification/aliases-suspicious.txt
scripts/alias-verification/deletes.txt
scripts/alias-verification/renames.txt
scripts/alias-verification/fixes-data.txt
scripts/alias-verification/historical-aliases-correct.txt
scripts/alias-verification/historical-aliases-missing.txt
scripts/alias-verification/historical-aliases-report.txt
scripts/alias-verification/historical-fixes.json
# Ignore compiled Go binaries in static programs.
static/programs/*-go/*-go