Skip to content

Commit ed09a59

Browse files
committed
chore: update .gitignore and add VSCode settings
1 parent f4390c6 commit ed09a59

File tree

2 files changed

+124
-6
lines changed

2 files changed

+124
-6
lines changed

.gitignore

Lines changed: 111 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,119 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
pnpm-debug.log*
7+
lerna-debug.log*
8+
9+
# Package lock files (keep one, ignore others)
110
package-lock.json
11+
yarn.lock
212
pnpm-lock.yaml
3-
node_modules/
13+
14+
# Runtime and build outputs
415
runtime/
16+
dist/
17+
build/
18+
out/
519

6-
.idea/
20+
# Coverage reports
21+
coverage/
22+
.nyc_output/
23+
*.lcov
24+
25+
# Test outputs
26+
test-results/
27+
test-report.xml
28+
29+
# IDE and editor files
730
.vscode/
31+
.idea/
32+
*.swp
33+
*.swo
34+
*~
835

9-
.appveyor.yml
36+
# OS generated files
37+
.DS_Store
38+
.DS_Store?
39+
._*
40+
.Spotlight-V100
41+
.Trashes
42+
ehthumbs.db
43+
Thumbs.db
44+
45+
# Logs
46+
logs/
47+
*.log
48+
49+
# Temporary files
50+
tmp/
51+
temp/
52+
*.tmp
53+
*.temp
54+
55+
# Environment variables
56+
.env
57+
.env.local
58+
.env.development.local
59+
.env.test.local
60+
.env.production.local
61+
62+
# TypeScript
63+
*.tsbuildinfo
64+
65+
# Optional npm cache directory
66+
.npm
67+
68+
# Optional eslint cache
69+
.eslintcache
70+
71+
# Optional REPL history
72+
.node_repl_history
73+
74+
# Output of 'npm pack'
75+
*.tgz
76+
77+
# Yarn Integrity file
78+
.yarn-integrity
79+
80+
# parcel-bundler cache (https://parceljs.org/)
81+
.cache
82+
.parcel-cache
83+
84+
# Next.js build output
85+
.next
86+
87+
# Nuxt.js build / generate output
88+
.nuxt
89+
90+
# Storybook build outputs
91+
.out
92+
.storybook-out
93+
94+
# Temporary folders
95+
.tmp/
96+
.temp/
97+
98+
# Editor directories and files
99+
.vscode/*
100+
!.vscode/extensions.json
101+
.idea
102+
*.suo
103+
*.ntvs*
104+
*.njsproj
105+
*.sln
106+
*.sw?
107+
108+
# CI/CD
10109
.github/
110+
.appveyor.yml
111+
.travis.yml
112+
.circleci/
113+
.gitlab-ci.yml
11114

12-
.nyc_output/
13-
nyc.config.js
14-
coverage/
115+
# Documentation build
116+
docs/_build/
117+
118+
# Local development
119+
.local/

.vscode/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"github.copilot.chat.commitMessageGeneration.instructions": [
3+
{ "text": "Write commit messages in English." },
4+
{ "text": "Follow the structure: `<type>(<scope>): <subject>`." },
5+
{
6+
"text": "Use the following types: feat, fix, docs, style, refactor, perf, test, chore, deps, revert."
7+
},
8+
{ "text": "Keep the subject concise (max 50 characters, no period)." },
9+
{
10+
"text": "Provide a detailed body explaining the changes (wrap lines at 72 characters)."
11+
}
12+
]
13+
}

0 commit comments

Comments
 (0)