-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrepolint.json
More file actions
43 lines (43 loc) · 1.25 KB
/
repolint.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"extends": "https://raw.githubusercontent.com/qualcomm/.github/main/repolint.json",
"rules": {
"source-license-headers-exist": {
"level": "error",
"rule": {
"type": "file-starts-with",
"options": {
"globsAll": [
"**/*.py",
"**/*.c",
"**/*.cc",
"**/*.cpp",
"**/*.h",
"**/*.sh",
"**/*.go"
],
"skip-paths-matching": {
"patterns": [
"minitap\/",
"linux-sandbox-pid1.cc",
"linux-sandbox-pid1.h",
"linux-sandbox-options.cc",
"linux-sandbox-options.h",
"linux-sandbox.cc",
"linux-sandbox.h",
"logging.cc",
"logging.h",
"process-tools.cc",
"process-tools.h"
]
},
"lineCount": 60,
"patterns": [
"(Copyright|©).*Qualcomm Innovation Center, Inc|Qualcomm Technologies, Inc|Copyright (\\(c\\)|©) (20(1[2-9]|2[0-2])(-|,|\\s)*)+ The Linux Foundation",
"SPDX-License-Identifier|Redistribution and use in source and binary forms, with or without"
],
"flags": "i"
}
}
}
}
}