-
Notifications
You must be signed in to change notification settings - Fork 72
/
license-config.json
73 lines (73 loc) · 1.86 KB
/
license-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
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
{
"ignore": [
"**/*.@(editorconfig|md|log|lock|patch|prettierrc|gitignore|eslintignore|stylelintrc|csv|gz|geojson|woff2|woff|xml|yarnrc|yarn-integrity|ttf|map|pdf|snap|dockerignore|jsonc|idea|env|info|key|pub|cjs|sql)",
".husky",
".git",
".github/DISCUSSION_TEMPLATE/Installation.yml",
".github/CODEOWNERS",
".idea",
"**/patches",
".secrets",
"deploy_key.enc",
"license-header.txt",
".vscode",
".history",
"data",
"backups",
"**/coverage",
"packages/client/public/robots.txt",
"packages/login/public/robots.txt",
".env*",
".vs",
"**/.DS_Store",
"AUTHORS",
"LICENSE",
"license-header.txt",
"**/*Dockerfile*",
"**/packages/components/lib",
"**/packages/*/build",
"packages/gateway/src/graphql/schema.d.ts",
"packages/gateway/src/graphql/schema.graphql",
"packages/client/index.html",
"packages/client/src/tests/schema.graphql",
"packages/login/index.html",
"packages/components/**/*.mdx",
"packages/components/.storybook/preview.jsx",
"packages/components/.storybook/manager-head.html",
"grafana",
"packages/scheduler/start.sh",
"packages/scheduler/crontab",
"packages/scheduler/jobs/*",
".nvmrc",
".idea",
"packages/dashboards/*.jar",
"packages/dashboards/plugins/*.jar",
"packages/dashboards/data/metabase/*.db",
"packages/client/dev-dist"
],
"license": "license-header.txt",
"licenseFormats": {
"sh|yml|yaml|toml|conf|txt|dotfile|graphql": {
"eachLine": {
"prepend": "# "
}
},
"html|xml|svg|mdx": {
"prepend": "<!--",
"append": "-->"
},
"ts|tsx|js|css": {
"prepend": "/*",
"append": " */",
"eachLine": {
"prepend": " * "
}
},
"ini": {
"eachLine": {
"prepend": "; "
}
}
},
"trailingWhitespace": "TRIM"
}