Because I have better things to do than remembering how to set up eslint or prettier for the 1000th time.
First install the CLI globally.
npm install -g @lucasdinonolte/lazy-cli
Then you're ready to access the built-in snippets from anywhere by Using
lazy
You can also point lazy
to a custom snippets folder inside of a project.
Start by installing lazy
into your project as a dev dependency.
npm install --save-dev @lucasdinonolte/lazy-cli
Next add lazy to your project’s scripts.
...
"scaffold": "lazy ./path/to/snippetsFoler",
...