forked from konflux-ci/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
36 lines (28 loc) · 761 Bytes
/
.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
# gitignore for HAC BS documentation git repository
# HAC BS documentation is stored in adoc (AsciiDoc) format. Typically the
# adoc is converting into HTML to verify syntax while writing the files,
# but the HTML file should not be stored in git since the HTML files will
# likely get out of sync with the source (adoc) files. Web browsers will read adoc and convert into HTML when displaying the contents.
**/*.html
# Python object files
*.py[cod]
# vim swap files
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]
# vim temporary files
*~
# tmp dir
tmp/
# Antora working directories
node_modules/
build/
!docs/modules/ROOT/**/build
public/
.idea/
.cache
# Netlify deploy output from preview workflow
deploy.json
.DS_Store