From 3407409dca63c927a1b29a67708f7766af4a1f98 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Tue, 9 Aug 2022 09:05:59 +0000 Subject: [PATCH] Format code with prettier This commit fixes the style issues introduced in 8667071 according to the output from prettier. Details: https://deepsource.io/gh/fuwaa/pint/transform/f89dc4a2-dc45-47d1-a559-2f718291b1ec/ --- public/manifest.json | 41 ++++++++++------------------------------- 1 file changed, 10 insertions(+), 31 deletions(-) diff --git a/public/manifest.json b/public/manifest.json index 4a9c92a..c99fb69 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -21,48 +21,27 @@ "name": "Jariel Que", "url": "https://github.com/fuwaa" }, - "host_permissions": [ - "https://*.github.com/" - ], + "host_permissions": ["https://*.github.com/"], "content_scripts": [ { "run_at": "document_start", - "matches": [ - "https://*.github.com/*" - ], - "css": [ - "pint-css.css" - ], - "js": [ - "initial.js" - ] + "matches": ["https://*.github.com/*"], + "css": ["pint-css.css"], + "js": ["initial.js"] }, { "run_at": "document_end", - "matches": [ - "https://*.github.com/*" - ], - "js": [ - "initial.js" - ], - "css": [ - "unhide.css" - ] + "matches": ["https://*.github.com/*"], + "js": ["initial.js"], + "css": ["unhide.css"] }, { "run_at": "document_idle", - "matches": [ - "https://*.github.com/*" - ], - "js": [ - "initial.js" - ] + "matches": ["https://*.github.com/*"], + "js": ["initial.js"] } ], - "permissions": [ - "storage", - "scripting" - ], + "permissions": ["storage", "scripting"], "background": { "service_worker": "background.js" },