generated from caltechlibrary/py-cli-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
62 lines (54 loc) · 2.35 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
# =========================================================== -*- gitignore -*-
# @file .gitignore
# @brief Files and patterns for files and subdirs that git should ignore
# @date 2022-07-14
# @license Please see the file named LICENSE in the project directory
# @website https://github.com/caltechlibrary/foliage
#
# The approach we suggest is to add ONLY project-specific rules here. Put
# rules that apply to your way of doing things (and the particular tools you
# happen to use) into a global git ignore file as described in the section
# "Configuring ignored files for all repositories on your computer" here:
# https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
# (accessed on 2022-07-14). For example, Emacs checkpoint and backup files are
# things that are not specific to a given project; rather, Emacs users will
# see them created everywhere, in all projects, because they're a byproduct
# of using Emacs, not a consequence of working on a particular project. Thus,
# they belong in a user's global ignores list, not in this project .gitignore.
#
# A useful starting point for global .gitignore file contents can be found at
# https://github.com/github/gitignore/tree/main/Global (as of 2022-07-14).
# =============================================================================
# Ignore backup files created by our Makefile
# .............................................................................
*.bak
# InnoSetup-specific things to ignore:
# .............................................................................
*.~is
# Python-specific things to ignore (relevant because this is a Python project).
# .............................................................................
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.eggs/
.pytest_cache
.coverage
# Project-specific things to ignore:
# .............................................................................
dev/experiments/settings.ini
build
dist
dev/windows/version.py
dev/splash-screen/foliage-splash-screen.png
docs/_build
foliage/data/macos-systray-widget/macos-systray-widget
ABOUT.md
ABOUT.html
dev/installers/windows/version.py
dev/installers/windows/foliage_innosetup_script.iss
dev/installers/macos/READ THIS PLEASE.html
tests/settings.ini
*.tmp
dev/one-page-docs/read-me-first-macos/read-me-first.html
dev/one-page-docs/read-me-first-windows/read-me-first.html