Use trailingComma: 'all' (#1457)

This commit is contained in:
Charlie Marsh 2022-12-29 19:36:51 -05:00 committed by GitHub
parent 2c7464604a
commit 9db825c731
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 19 additions and 16 deletions

View file

@ -44,7 +44,7 @@ export default function SourceEditor({
check.code === "F401" || check.code === "F841"
? [MarkerTag.Unnecessary]
: [],
}))
})),
);
const codeActionProvider = monaco?.languages.registerCodeActionProvider(
@ -81,7 +81,7 @@ export default function SourceEditor({
}));
return { actions, dispose: () => {} };
},
}
},
);
return () => {
@ -93,7 +93,7 @@ export default function SourceEditor({
(value: string | undefined) => {
onChange(value ?? "");
},
[onChange]
[onChange],
);
return (