From d36286026af0a63e111f400bc400c427dab41ba6 Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Mon, 12 Aug 2024 03:37:20 -0300 Subject: [PATCH] expanded ignore file to handle multibranching --- .gitignore | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 58 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3a0cd83..ffef675 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,61 @@ source/ releases/ *.env -*.sh \ No newline at end of file +*.sh + +# compiled output +/dist +/node_modules +/build + +# Logs +logs +*.log +npm-debug.log* +pnpm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# OS +.DS_Store + +# Tests +/coverage +/.nyc_output + +# IDEs and editors +/.idea +.project +.classpath +.c9/ +*.launch +.settings/ +*.sublime-workspace + +# IDE - VSCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# temp directory +.temp +.tmp + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json \ No newline at end of file