forked from jsdoc/jsdoc
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.license-check.json
55 lines (55 loc) · 986 Bytes
/
.license-check.json
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
{
"defaultFormat": {
"prepend": "",
"append": ""
},
"ignore": [
".husky/_/**/*",
".husky/pre-commit",
".parcel-cache",
"**/.*",
"!**/.*.js",
"**/*.EXAMPLE",
"**/*.json",
"**/*.md",
"**/*.txt",
"**/AUTHORS",
"**/CONTRIB*",
"**/coverage",
"**/test/fixtures",
"out",
"packages/jsdoc/test/specs/add-matchers.cjs",
"packages/jsdoc-template-legacy/static",
"tmp"
],
"license": ".license-header.txt",
"licenseFormats": {
"css|js|mjs|scss|ts": {
"prepend": "/*",
"eachLine": {
"prepend": " "
},
"append": "*/"
},
"njk": {
"prepend": "{#-",
"eachLine": {
"prepend": " "
},
"append": "-#}"
},
"tmpl": {
"prepend": "<?js /*",
"eachLine": {
"prepend": " "
},
"append": "*/ ?>"
},
"yaml": {
"eachLine": {
"prepend": "# "
}
}
},
"regexIdentifier": "%%"
}