-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy path.gitignore
More file actions
executable file
·104 lines (82 loc) · 1.79 KB
/
Copy path.gitignore
File metadata and controls
executable file
·104 lines (82 loc) · 1.79 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Python runtime artifacts
*.pyc
*.egg-info/
# Build & archive output
*.jar
*.tgz
*.zip
# Logs
*.log
# Unittest and coverage reports
.cache/
.coverage
.tox/
nosetests.xml
test.cache
# Type checker / static analysis
pyrightconfig.json
/typings/
# PyCharm
*.srctrl*
# VSCode
**/.vscode/
# OSX specific files
.DS_Store
.DS_Store?
.AppleDouble/
.LSOverride
.VolumeIcon.icns
favicon.icns
._*
.Spotlight-V100/
.Trashes/
# Windows specific files
ehthumbs.db
Thumbs.db
# Ignore all root-level dot-directories; whitelist those tracked in git
/.*/
!/.github/
!/.githooks/
# Don't check in built documentation
/doc/user/build/
/doc/user/source/plugins_doc/
!/doc/user/source/plugins_doc/plugins_footer.rst
!/doc/user/source/plugins_doc/plugins_gateway_header.rst
!/doc/user/source/plugins_doc/plugins_interface_header.rst
!/doc/user/source/plugins_doc/plugins_protocol_header.rst
!/doc/user/source/plugins_doc/plugins_system_header.rst
!/doc/user/source/plugins_doc/plugins_unclassified_header.rst
!/doc/user/source/plugins_doc/plugins_all_header.rst
# Don't check in plugins to core repository
/plugins/
# ./etc -- ignore everything
/etc/
# ./items -- ignore everything
/items/
# ./logics -- ignore everything
/logics/
# ./functions -- ignore everything
/functions/
# ./structs -- ignore everything
/structs/
# ./scenes -- ignore everything
/scenes/
# don't check in directories under /var beside listed exceptions
/var/
!/var/backup/
!/var/cache/
!/var/db/
!/var/log/
!/var/rrd/
!/var/run/
# don't check in requirements that are built each time SHNG starts
/requirements/*
!/requirements/test.txt
# ignore bootstrap tool plugin matrix
/tools/plugin_dummy_matrix.json
# ignore users tools settings
/custom_plugins/
/priv_tools/
# ignore all root *.toml except pyproject.toml (ruff / build config)
/*.toml
!/pyproject.toml