Skip to content

Commit 186ac48

Browse files
author
danil-nizamov
committed
added gitgnore
1 parent 351990b commit 186ac48

File tree

1 file changed

+152
-0
lines changed

1 file changed

+152
-0
lines changed

.gitignore

Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
# Dependencies
2+
node_modules/
3+
tests/node_modules/
4+
5+
# Test artifacts
6+
tests/coverage/
7+
tests/playwright-report/
8+
test-results/
9+
10+
# Logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
lerna-debug.log*
15+
16+
# Runtime data
17+
pids
18+
*.pid
19+
*.seed
20+
*.pid.lock
21+
22+
# Coverage directory used by tools like istanbul
23+
coverage/
24+
*.lcov
25+
26+
# nyc test coverage
27+
.nyc_output
28+
29+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30+
.grunt
31+
32+
# Bower dependency directory (https://bower.io/)
33+
bower_components
34+
35+
# node-waf configuration
36+
.lock-wscript
37+
38+
# Compiled binary addons (https://nodejs.org/api/addons.html)
39+
build/Release
40+
41+
# Dependency directories
42+
node_modules/
43+
jspm_packages/
44+
45+
# TypeScript v1 declaration files
46+
typings/
47+
48+
# TypeScript cache
49+
*.tsbuildinfo
50+
51+
# Optional npm cache directory
52+
.npm
53+
54+
# Optional eslint cache
55+
.eslintcache
56+
57+
# Microbundle cache
58+
.rpt2_cache/
59+
.rts2_cache_cjs/
60+
.rts2_cache_es/
61+
.rts2_cache_umd/
62+
63+
# Optional REPL history
64+
.node_repl_history
65+
66+
# Output of 'npm pack'
67+
*.tgz
68+
69+
# Yarn Integrity file
70+
.yarn-integrity
71+
72+
# dotenv environment variables file
73+
.env
74+
.env.test
75+
76+
# parcel-bundler cache (https://parceljs.org/)
77+
.cache
78+
.parcel-cache
79+
80+
# Next.js build output
81+
.next
82+
83+
# Nuxt.js build / generate output
84+
.nuxt
85+
dist
86+
87+
# Gatsby files
88+
.cache/
89+
public
90+
91+
# Storybook build outputs
92+
.out
93+
.storybook-out
94+
95+
# Temporary folders
96+
tmp/
97+
temp/
98+
99+
# Editor directories and files
100+
.vscode/
101+
.idea/
102+
*.swp
103+
*.swo
104+
*~
105+
106+
# OS generated files
107+
.DS_Store
108+
.DS_Store?
109+
._*
110+
.Spotlight-V100
111+
.Trashes
112+
ehthumbs.db
113+
Thumbs.db
114+
115+
# Python
116+
__pycache__/
117+
*.py[cod]
118+
*$py.class
119+
*.so
120+
.Python
121+
build/
122+
develop-eggs/
123+
dist/
124+
downloads/
125+
eggs/
126+
.eggs/
127+
lib/
128+
lib64/
129+
parts/
130+
sdist/
131+
var/
132+
wheels/
133+
*.egg-info/
134+
.installed.cfg
135+
*.egg
136+
MANIFEST
137+
138+
# Virtual environments
139+
venv/
140+
env/
141+
ENV/
142+
143+
# IDE
144+
.vscode/
145+
.idea/
146+
*.swp
147+
*.swo
148+
149+
# Test files (exclude from releases but keep in repo)
150+
tests/coverage/
151+
tests/playwright-report/
152+
test-results/

0 commit comments

Comments
 (0)