You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2023/08/04 23:30:15 UTC

[superset] branch dependabot/npm_and_yarn/superset-websocket/prettier-3.0.1 updated: fix prettier

This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a commit to branch dependabot/npm_and_yarn/superset-websocket/prettier-3.0.1
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/dependabot/npm_and_yarn/superset-websocket/prettier-3.0.1 by this push:
     new f723f0112b fix prettier
f723f0112b is described below

commit f723f0112b9798dc3b9d998985a094ec7e9b3379
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Fri Aug 4 16:29:52 2023 -0700

    fix prettier
---
 superset-websocket/package.json                                     | 1 +
 superset-websocket/utils/client-ws-app/public/stylesheets/style.css | 6 +++++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/superset-websocket/package.json b/superset-websocket/package.json
index 16b693c310..9ca95e221f 100644
--- a/superset-websocket/package.json
+++ b/superset-websocket/package.json
@@ -11,6 +11,7 @@
     "dev-server": "ts-node src/index.ts start",
     "build": "tsc",
     "prettier-check": "prettier --check .",
+    "prettier-write": "prettier --write .",
     "format": "prettier --write ."
   },
   "license": "Apache-2.0",
diff --git a/superset-websocket/utils/client-ws-app/public/stylesheets/style.css b/superset-websocket/utils/client-ws-app/public/stylesheets/style.css
index 9e84e229c9..a33cf8da77 100644
--- a/superset-websocket/utils/client-ws-app/public/stylesheets/style.css
+++ b/superset-websocket/utils/client-ws-app/public/stylesheets/style.css
@@ -18,7 +18,11 @@
  */
 body {
   padding: 50px;
-  font: 14px 'Lucida Grande', Helvetica, Arial, sans-serif;
+  font:
+    14px 'Lucida Grande',
+    Helvetica,
+    Arial,
+    sans-serif;
 }
 
 a {