Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-file-progress

Package Overview
Dependencies
Maintainers
0
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-file-progress - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

2

package.json
{
"name": "eslint-plugin-file-progress",
"description": "Eslint plugin to print file progress",
"version": "3.0.0",
"version": "3.0.1",
"license": "MIT",

@@ -6,0 +6,0 @@ "author": "sibiraj-s",

@@ -35,2 +35,3 @@ # eslint-plugin-file-progress

hide: false, // use this to hide the progress message, can be useful in CI
hideFileName: false, // use this to hide the file name, would simply show "Linting..."
successMessage: "Lint done..."

@@ -37,0 +38,0 @@ }

@@ -15,2 +15,3 @@ import path from 'node:path';

hide: false,
hideFileName: false,
successMessage: 'Lint done.',

@@ -35,3 +36,7 @@ };

if (!settings.hide) {
if (settings.hide) {
return {};
}
if (!settings.hideFileName) {
const filename = context.getFilename();

@@ -38,0 +43,0 @@ const relativeFilePath = path.relative(context.getCwd(), filename);

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