1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 11:28:23 +02:00
mkdocs-material/.gitignore

68 lines
1.8 KiB
Plaintext
Raw Normal View History

2024-01-06 03:27:06 +01:00
# Copyright (c) 2016-2024 Martin Donath <martin.donath@squidfunk.com>
2016-01-28 23:27:15 +01:00
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
2021-02-07 17:56:41 +01:00
# -----------------------------------------------------------------------------
# Node, TypeScript, Python
# -----------------------------------------------------------------------------
2016-02-04 15:03:20 +01:00
2021-02-07 17:56:41 +01:00
# Dependencies
2023-01-02 11:13:22 +01:00
node_modules
__pycache__
venv
.venv
2018-08-05 18:59:58 +02:00
2021-02-07 17:56:41 +01:00
# Build files
2023-01-02 11:13:22 +01:00
build
site
2016-02-04 15:03:20 +01:00
# Distribution files
2023-01-02 11:13:22 +01:00
dist
mkdocs_material.egg-info
2021-02-07 17:56:41 +01:00
# Caches and logs
*.cpuprofile
*.log
*.tsbuildinfo
2021-07-25 15:47:59 +02:00
.cache
2021-02-07 17:56:41 +01:00
.eslintcache
__pycache__
2021-02-07 17:56:41 +01:00
2022-12-18 17:51:21 +01:00
# Examples
example
example.zip
2021-02-07 17:56:41 +01:00
# -----------------------------------------------------------------------------
# General
# -----------------------------------------------------------------------------
# Never ignore .gitkeep files
!**/.gitkeep
# macOS internals
.DS_Store
# Temporary files
TODO
2021-02-07 17:56:41 +01:00
tmp
2019-01-01 18:41:10 +01:00
# IDEs & Editors
.idea
*~