
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
eslint-plugin-file-progress
Advanced tools
Eslint plugin to print file progress
npm i -D eslint-plugin-file-progress
# or
yarn add --dev eslint-plugin-file-progress
// eslint.config.js
{
name: 'progress',
plugins: {
progress
},
rules: {
"progress/activate": 1
},
settings: {
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..."
}
}
}
Or use the recommended config
// eslint.config.js
import progress from 'eslint-plugin-file-progress'
export default [
progress.configs.recommended
]
or if you want to hide the progress message in CI
// eslint.config.js
import progress from 'eslint-plugin-file-progress'
export default [
progress.configs['recommended-ci']
]
This configuration is similar to the recommended one, but it automatically detects CI environments by checking if the CI
environment variable is set to true
, and hides the progress message accordingly.
For CI's where CI is not set to true
, you can use the settings.progress.hide
option to hide the progress message.
Who likes a silent console ¯\_(ツ)_/¯
Some eslint plugins for code editors may conflict with this plugin rule (or, in that context, a file progress is not relevant)
npx eslint . --plugin file-progress --rule 'file-progress/activate: 1'
Or, in your package.json's command:
{
"scripts: [
- "lint": "eslint ."
+ "lint": "eslint . --plugin file-progress --rule \"file-progress/activate: 1\""
]
}
Use file-progress/activate: 0
to disable the plugin. See https://eslint.org/docs/latest/user-guide/command-line-interface#specifying-rules-and-plugins for more details on how to use CLI
3.0.2
FAQs
Eslint plugin to print file progress
The npm package eslint-plugin-file-progress receives a total of 117,363 weekly downloads. As such, eslint-plugin-file-progress popularity was classified as popular.
We found that eslint-plugin-file-progress demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.