-
Notifications
You must be signed in to change notification settings - Fork 221
/
.gitignore
64 lines (48 loc) · 1.39 KB
/
.gitignore
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
# 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
node_modules
*.map
# For us Vim folk.
*.swp
# These are for IntelliJ based tooling
.idea/
*.iml
.vscode
# 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
# Python's virtual env dir.
venv/
# Ignore the Stencil component bundle.
/static/js/components.js
/static/js/components/
# 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
# 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