forked from tenstorrent/tt-metal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_copyright_config.yaml
46 lines (42 loc) · 1.39 KB
/
check_copyright_config.yaml
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
DEFAULT:
perform_check: yes
# what licenses (or license expressions) are allowed for files in this section
# when setting this option in a section, you need to list all the allowed licenses
allowed_licenses:
- Apache-2.0
license_for_new_files: Apache-2.0 # license to be used when inserting a new copyright notice
new_notice_c: | # notice for new C, CPP, H, HPP and LD files
// SPDX-FileCopyrightText: © {years} Tenstorrent Inc.
//
// SPDX-License-Identifier: {license}
new_notice_python: | # notice for new python files
"""
SPDX-FileCopyrightText: © {years} Tenstorrent Inc.
SPDX-License-Identifier: {license}
"""
# comment lines matching:
# SPDX-FileCopyrightText: year[-year] Espressif Systems
# or
# SPDX-FileContributor: year[-year] Espressif Systems
# are replaced with this template prefixed with the correct comment notation (# or // or *) and SPDX- notation
espressif_copyright: '© {years} Tenstorrent Inc.'
include:
- "*.cpp"
- "*.cc"
- "*.h"
ignore: # You can also select ignoring files here
perform_check: no # Don't check files from that block
include:
- .github/
- tt_metal/third_party/sfpi/
- tt_metal/third_party/
- third_party/
- __pycache__
- /tests/end_to_end_tests/env/
- "*.ld"
- "*.S"
- build/
- env/
- eevenv/
- built/
- models/demos/t3000/llama2_70b/reference/