Skip to content

Commit f033cfa

Browse files
moschmdtgarfieldnate
authored andcommitted
Initial commit gitignore for mkdocs
1 parent 86f1e61 commit f033cfa

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

.gitignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
output
2+
3+
# Copyright (c) 2016-2024 Martin Donath <martin.donath@squidfunk.com>
4+
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the "Software"), to
7+
# deal in the Software without restriction, including without limitation the
8+
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9+
# sell copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
12+
# The above copyright notice and this permission notice shall be included in
13+
# all copies or substantial portions of the Software.
14+
15+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20+
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21+
# IN THE SOFTWARE.
22+
23+
# -----------------------------------------------------------------------------
24+
# Node, TypeScript, Python
25+
# -----------------------------------------------------------------------------
26+
27+
# Dependencies
28+
node_modules
29+
__pycache__
30+
venv
31+
.venv
32+
33+
# Build files
34+
build
35+
site
36+
37+
# Distribution files
38+
dist
39+
mkdocs_material.egg-info
40+
41+
# Caches and logs
42+
*.cpuprofile
43+
*.log
44+
*.tsbuildinfo
45+
.cache
46+
.eslintcache
47+
__pycache__
48+
49+
# Examples
50+
example
51+
example.zip
52+
53+
# -----------------------------------------------------------------------------
54+
# General
55+
# -----------------------------------------------------------------------------
56+
57+
# Never ignore .gitkeep files
58+
!**/.gitkeep
59+
60+
# macOS internals
61+
.DS_Store
62+
63+
# Temporary files
64+
TODO
65+
tmp
66+
67+
# IDEs & Editors
68+
.idea
69+
*~

0 commit comments

Comments
 (0)