feat: Add .gitignore to exclude dependencies, environment files, and IDE settings
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
|||||||
|
# Dependencies
|
||||||
|
node_modules/
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# K6 test artifacts
|
||||||
|
results/
|
||||||
|
*.json
|
||||||
|
summary.json
|
||||||
|
|
||||||
|
# Environment
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Temp files
|
||||||
|
.tmp/
|
||||||
|
tmp/
|
||||||
|
*.log
|
||||||
Reference in New Issue
Block a user