diff options
author | 2021-07-07 18:44:32 +0700 | |
---|---|---|
committer | 2021-07-07 18:44:32 +0700 | |
commit | 93899eebabea8626587cadc37b028a3c48f39228 (patch) | |
tree | a59dddeea1c6bc76b45c02ef88bba43e2800e684 /source/features/one-click-pr-or-gist.tsx | |
parent | 40ed43f6cdd23178b6c6ee7c04a5731cb2342012 (diff) | |
download | refined-github-93899eebabea8626587cadc37b028a3c48f39228.tar.gz refined-github-93899eebabea8626587cadc37b028a3c48f39228.tar.zst refined-github-93899eebabea8626587cadc37b028a3c48f39228.zip |
Lint: Enable `comma-dangle` (#4545)
Diffstat (limited to 'source/features/one-click-pr-or-gist.tsx')
-rw-r--r-- | source/features/one-click-pr-or-gist.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/features/one-click-pr-or-gist.tsx b/source/features/one-click-pr-or-gist.tsx index 806cd53d..58b8a8ad 100644 --- a/source/features/one-click-pr-or-gist.tsx +++ b/source/features/one-click-pr-or-gist.tsx @@ -36,7 +36,7 @@ function init(): void | false { value={radioButton.value} > {title} - </button> + </button>, ); } @@ -46,7 +46,7 @@ function init(): void | false { void features.add(__filebasename, { include: [ pageDetect.isCompare, - pageDetect.isGist + pageDetect.isGist, ], - init + init, }); |