Last active
March 3, 2020 12:59
-
-
Save moritzjacobs/0824c645539870bd1d3826f637e00ecd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ scriptlint --strict --fix | |
⧙։⧘ [✔️] ✨ All good | |
// end result: | |
{ | |
"name": "my-cool-project", | |
"version": "1.0.0", | |
… | |
"scripts": { | |
"build": "webpack", | |
"dev": "npm run start", | |
"start": "webpack-dev-server", | |
"test": "run-s build test:lint", | |
"test:lint": "eslint src" | |
}, | |
… | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment