forked from LightDotSo/LightDotSo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.license-check-and-add-config.json
141 lines (141 loc) · 2.88 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"$schema": "https://raw.githubusercontent.com/awjh/license-check-and-add/master/config-schema.json",
"ignore": [
"**/CHANGELOG.md",
"**/README.md",
"**/.DS_STORE",
"**/generated.ts",
"**/plonk_vk.sol",
"**/Package.swift",
"**/prisma/src/lib.rs",
"**/schema-rs.prisma",
"**/schema.prisma",
"**/.gitkeep",
"**/.gitignore",
"**/.*rc.js",
"**/.*rc.yml",
"**/.*ignore",
"**/.gradle*",
"**/.pnpm*",
"**/*.css",
"**/*.config.js",
"**/*.config.cjs",
"**/*.config.ts",
"**/*.entitlements",
"**/*.env",
"**/*.env.development",
"**/*.env.production",
"**/*.gradle",
"**/*.html",
"**/*.icns",
"**/*.ipynb",
"**/*.lock",
"**/*.mdx",
"**/*.pbxproj",
"**/*.png",
"**/*.pro",
"**/*.proof",
"**/*.sql",
"**/*.toml",
"**/*.plist",
"**/*.resolved",
"**/*.svg",
"**/*.tree",
"**/*.xcscheme",
"**/*.xcsettings",
"**/*.xcuserstate",
"**/*.xcworkspacedata",
"**/*.xml",
"**/*.webp",
"**/sentry.properties",
"**/next-env.d.ts",
"**/vite-env.d.ts",
"gradle*",
"pnpm*",
"tmp*",
"*.gradle",
"*file",
".*",
"*.config.js",
"*.config.mjs",
"*.config.ts",
"*.workspace.ts",
"*.json",
"*.kdl",
"*.md",
"*.toml",
"*.txt",
"*.yml",
"apps/app/public/mockServiceWorker.js",
"apps/extension/**/*.js",
"apps/docs/src/pages/posts/**/*.mdx",
"apps/subgraph/generated/**",
"apps/subgraph/subgraph.yaml",
"configurations/kysely/src/db/**/*.ts",
"configurations/prisma/src/zod/**/*.ts",
"fly/graph/nginx/**",
"packages/client/src/**/*.d.ts",
"patches/**",
"ios/LightWalletSafariExtension/Resources/**/*.js",
"**/__snapshots__/**",
"**/*.app/**",
"**/.cargo/**",
"**/.changeset/**",
"**/.husky/**",
"**/.github/**",
"**/.mobiledev/**",
"**/_next/**",
"**/*.appex/**",
"**/*.xcframework/**",
"**/.autometrics/**",
"**/.build/**",
"**/.gradle/**",
"**/.idea/**",
"**/.next/**",
"**/.ruff_cache/**",
"**/.swiftpm/**",
"**/.turbo/**",
"**/.venv/**",
"**/build/**",
"**/coverage/**",
"**/debug/**",
"**/docs/**",
"**/fastlane/**",
"**/gradle/**",
"**/lib/**",
"**/pods/**",
"**/scripts/**",
"**/snapshots/**",
"**/target/**",
"**/tools/**",
"**/wiki/**"
],
"license": "LICENSE.header",
"defaultFormat": {
"eachLine": {
"prepend": "# "
},
"append": ""
},
"licenseFormats": {
"js|cjs|mjs|ts|tsx|rs|sol|swift|kt|nr|udl": {
"eachLine": {
"prepend": "// "
},
"append": ""
},
"mdx": {
"eachLine": {
"prepend": "{/*",
"append": "*/}"
}
},
"sh": {
"eachLine": {
"prepend": "# "
},
"append": ""
}
},
"trailingWhitespace": "TRIM"
}