please add eslint:fix to scripts
See original GitHub issue "eslint": "npx projen eslint",
"eslint:fix": "npx projen eslint --fix",
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
How to run eslint --fix from npm script - Stack Overflow
You can add a new command in package.json. "scripts": { "lint": "eslint --fix --ext .js,.jsx ." } And then you can run it...
Read more >NPM — How to Run ESLint --fix From npm Script - Future Studio
Run ESLint --fix From npm Script. You can pass along CLI flags to your npm commands. You must add two dashes after your...
Read more >Command Line Interface - ESLint - Pluggable JavaScript Linter
A pluggable and configurable linter tool for identifying and reporting on patterns in JavaScript. Maintain your code quality with ease.
Read more >eslint --fix not fixing when running by npm · Issue #7456 - GitHub
I am trying to use "--fix" in npm scripts, as I do not know why but ... Please include your output, and if...
Read more >Auto-fix and format your JavaScript with ESLint - IBM Developer
For VS Code, install the ESLint package. Then, to format on save, go to global settings and search for ESLint and turn on...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@Chriscbr this is cool. Thanks! I still think that it makes sense as a default.
It looks like this is the default now. Which is pretty great!