mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 21:31:46 +00:00
chore: add .gitignore with Node.js/JavaScript ignore patterns
- Include common directories (node_modules, dist, build) - Ignore logs, OS files, coverage, IDE settings, and environment files - Add placeholders for package lock files and generated docs.
This commit is contained in:
+31
@@ -0,0 +1,31 @@
|
|||||||
|
# Node.js / JavaScript typical ignores
|
||||||
|
# Dependency directories
|
||||||
|
node_modules/
|
||||||
|
# Build output
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
# Logs
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
# Runtime data
|
||||||
|
*.pid
|
||||||
|
# Environment files
|
||||||
|
.env
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
|
# OS files
|
||||||
|
.DS_Store
|
||||||
|
# Coverage reports
|
||||||
|
coverage/
|
||||||
|
# Test output
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.log
|
||||||
|
# Optional: package lock files if you prefer not to commit them
|
||||||
|
# package-lock.json
|
||||||
|
# yarn.lock
|
||||||
|
# More specific JS artifacts
|
||||||
|
*.js.map
|
||||||
|
# Ignore generated docs
|
||||||
|
/docs/
|
||||||
Reference in New Issue
Block a user