Skip to content

Commit 9d607d7

Browse files
committed
Fix a typo: non-permitted → permitted.
1 parent 098584c commit 9d607d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/bin/package.json/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ if (categorize(packageJSON["author"]) === "object") {
358358
}
359359
field(["license"], "string", {
360360
additionalChecks: {
361-
"Must contain a non-permitted license.": (license: string) => {
361+
"Must contain a permitted license.": (license: string) => {
362362
for (const licenseEntry of license.split(" OR ")) {
363363
if (!PERMITTED_LICENSES.has(licenseEntry)) {
364364
return false;

0 commit comments

Comments
 (0)