-
Notifications
You must be signed in to change notification settings - Fork 50
/
license-check-and-add-config.json
48 lines (48 loc) · 1.18 KB
/
license-check-and-add-config.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
{
"ignore": [
".git",
"**/.vscode",
".github/ISSUE_TEMPLATE",
"**/.env.template",
"./.dependabot",
"**/yarn.lock",
"**/*.log",
"**/*.funcignore",
"**/.github/pull_request_template.md",
"**/CODEOWNERS",
"package.json",
"cred-scan-suppressions.json",
"**/node_modules",
"**/.gitattributes",
"**/test-results",
"**/dist",
"**/*.snap",
"**/.dockerignore",
"**/Dockerfile",
"**/package.json",
"**/packages",
"**/.DS_Store",
".yarn/",
".yarnrc.yml",
"**/*.patch",
"**/.gdnsuppress"
],
"license": "./copyright-header.txt",
"licenseFormats": {
"yaml|npmrc|yml|ps1|gitignore|dockerignore|prettierignore|yarnrc|nsh|sh|shellcheckrc": {
"eachLine": {
"prepend": "# "
}
},
"ts|tsx|d.ts|js|scss|css": {
"eachLine": {
"prepend": "// "
}
},
"md|csproj|xml|html": {
"prepend": "<!--",
"append": "-->"
}
},
"trailingWhitespace": "TRIM"
}