summaryrefslogtreecommitdiff
path: root/source/features/embed-gist-inline.tsx
diff options
context:
space:
mode:
authorGravatar Federico Brigante <me@fregante.com> 2021-07-07 18:44:32 +0700
committerGravatar GitHub <noreply@github.com> 2021-07-07 18:44:32 +0700
commit93899eebabea8626587cadc37b028a3c48f39228 (patch)
treea59dddeea1c6bc76b45c02ef88bba43e2800e684 /source/features/embed-gist-inline.tsx
parent40ed43f6cdd23178b6c6ee7c04a5731cb2342012 (diff)
downloadrefined-github-93899eebabea8626587cadc37b028a3c48f39228.tar.gz
refined-github-93899eebabea8626587cadc37b028a3c48f39228.tar.zst
refined-github-93899eebabea8626587cadc37b028a3c48f39228.zip
Lint: Enable `comma-dangle` (#4545)
Diffstat (limited to 'source/features/embed-gist-inline.tsx')
-rw-r--r--source/features/embed-gist-inline.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/features/embed-gist-inline.tsx b/source/features/embed-gist-inline.tsx
index b7dc4dd5..521d5c1b 100644
--- a/source/features/embed-gist-inline.tsx
+++ b/source/features/embed-gist-inline.tsx
@@ -50,7 +50,7 @@ async function embedGist(link: HTMLAnchorElement): Promise<void> {
`}
</style>,
<link rel="stylesheet" href={gistData.stylesheet}/>,
- domify.one(gistData.div)!
+ domify.one(gistData.div)!,
);
link.parentElement!.after(container);
info.remove();
@@ -70,7 +70,7 @@ function init(): void {
void features.add(__filebasename, {
include: [
- pageDetect.hasComments
+ pageDetect.hasComments,
],
- init
+ init,
});