New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@huggingface/prettier-plugin-vertical-align

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@huggingface/prettier-plugin-vertical-align - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

5

dist/printer.js

@@ -28,3 +28,6 @@ import prettier from "prettier";

case "ObjectProperty": {
const shouldMoveCompletelyToNextLine = node.value.type !== "ObjectExpression" && node.value.type !== "ArrayExpression" && node.value.type !== "CallExpression";
const shouldMoveCompletelyToNextLine = node.value.type !== "ObjectExpression" &&
node.value.type !== "ArrayExpression" &&
node.value.type !== "CallExpression" &&
node.value.type !== "AwaitExpression";
// console.log(node.value.type);

@@ -31,0 +34,0 @@ return group([

2

package.json
{
"name": "@huggingface/prettier-plugin-vertical-align",
"packageManager": "pnpm@9.11.0",
"version": "0.0.10",
"version": "0.0.11",
"description": "",

@@ -6,0 +6,0 @@ "scripts": {

@@ -41,3 +41,6 @@ import type { AstPath, Printer } from "prettier";

const shouldMoveCompletelyToNextLine =
node.value.type !== "ObjectExpression" && node.value.type !== "ArrayExpression" && node.value.type !== "CallExpression";
node.value.type !== "ObjectExpression" &&
node.value.type !== "ArrayExpression" &&
node.value.type !== "CallExpression" &&
node.value.type !== "AwaitExpression";
// console.log(node.value.type);

@@ -44,0 +47,0 @@ return group([

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc