@vellone/techsak
v1.2.10
Published
matheusvellone's personal tech sak (swiss army knife)
Maintainers
Readme
MatheusVellone's Tech SAK (Swiss Army Knife)
This project is a collection of tools and utilities that I've created to help me in my day-to-day work. I've decided to share them with the community in the hope that they can be useful to others as well.
npm i -D @vellone/techsakMakefile
Commands with ## after the target are 'public' commands and are intended to be used by developers.
The other commands are 'hidden' and are intended to be used by automations or by 'public' commands.
Add the following code in your Makefile to include this project's Makefile:
include ./node_modules/@vellone/techsak/MakefileEditorConfig
Run make .editorconfig to copy this project's .editorconfig to your project.
Eslint Config
Add the following code in your eslint.config.mjs to include this project's ESLint configuration:
export { default } from '@vellone/techsak/eslint'TSConfig
Add the following code in your tsconfig.json to include this project's TypeScript configuration:
{
"extends": "./node_modules/@vellone/techsak/tsconfig.json"
}