-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlicenserc.toml
More file actions
76 lines (64 loc) · 1.49 KB
/
Copy pathlicenserc.toml
File metadata and controls
76 lines (64 loc) · 1.49 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
# Copyright © TUM AET 2025 - 2025
#
# Licensed under the MIT License
#
# Authors: Benedikt Hofmann, Patrick Stoeckle, and other contributors
#
# SPDX-FileCopyrightText: 2025 TUM AET
#
# SPDX-License-Identifier: MIT
# REUSE-IgnoreStart
inlineHeader = """
Copyright © {{ props.copyrightOwner }} {{ attrs.git_file_created_year }} - {{ attrs.git_file_modified_year }}
Licensed under the MIT License
Authors: {{ props.authors }}
SPDX-FileCopyrightText: {{ attrs.git_file_created_year }} {{ props.copyrightOwner }}
SPDX-License-Identifier: MIT
"""
# REUSE-IgnoreEnd
# You can exclude files and folders
excludes = [
".flake8",
".git/*",
".gitkeep",
".gradle/*",
".npmrc",
".vscode/*",
"*.ico",
"*.j2",
"*.jar",
"*.json",
"*.json5",
"*.jsonc",
"*.lock",
"*.png",
"*.pub",
"*.svelte",
"*.txt",
"build/*",
"CHANGELOG.md",
"CODEOWNERS",
"gradle/*",
"gradlew.bat",
"gradlew",
"LICENSE.md",
"LICENSE",
"LICENSES/*",
"node_modules/*",
]
additionalHeaders = ["licenseheaders.toml"]
useDefaultExcludes = false
[mapping.NEW_SCRIPT]
extensions = ["dockerignore", "gitignore", "gitattributes"]
[mapping.JINJA]
extensions = ["jinja"]
[mapping.MARKDOWN]
extensions = ["md"]
# Define variables for your file header
[properties]
copyrightOwner = "TUM AET"
authors = "Benedikt Hofmann, Patrick Stoeckle, and other contributors"
# Activate git features to detect when a file has been changed
[git]
ignore = 'auto'
attrs = 'enable'