Skip to content

Commit 5bcf544

Browse files
feat: add .gitignore for vizualni-admin to exclude unnecessary files
1 parent 2ff9d66 commit 5bcf544

1 file changed

Lines changed: 133 additions & 0 deletions

File tree

  • amplifier/scenarios/dataset_discovery/vizualni-admin
Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
/build
15+
16+
# production
17+
/dist
18+
19+
# misc
20+
.DS_Store
21+
*.pem
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# local env files
29+
.env*.local
30+
.env
31+
32+
# vercel
33+
.vercel
34+
35+
# typescript
36+
*.tsbuildinfo
37+
next-env.d.ts
38+
39+
# static export build artifacts
40+
out/
41+
42+
# Storybook build outputs
43+
storybook-static
44+
45+
# Test artifacts
46+
/test-results/
47+
/playwright-report/
48+
/playwright/.cache/
49+
50+
# Lighthouse CI reports
51+
.lighthouseci/
52+
53+
# IDE
54+
.vscode/
55+
.idea/
56+
57+
# OS generated files
58+
Thumbs.db
59+
.DS_Store
60+
61+
# Logs
62+
logs
63+
*.log
64+
65+
# Runtime data
66+
pids
67+
*.pid
68+
*.seed
69+
*.pid.lock
70+
71+
# Coverage directory used by tools like istanbul
72+
coverage/
73+
*.lcov
74+
75+
# nyc test coverage
76+
.nyc_output
77+
78+
# Dependency directories
79+
jspm_packages/
80+
81+
# Optional npm cache directory
82+
.npm
83+
84+
# Optional eslint cache
85+
.eslintcache
86+
87+
# Optional REPL history
88+
.node_repl_history
89+
90+
# Output of 'npm pack'
91+
*.tgz
92+
93+
# Yarn Integrity file
94+
.yarn-integrity
95+
96+
# parcel-bundler cache (https://parceljs.org/)
97+
.cache
98+
.parcel-cache
99+
100+
# next.js build output
101+
.next
102+
103+
# nuxt.js build output
104+
.nuxt
105+
106+
# vuepress build output
107+
.vuepress/dist
108+
109+
# Serverless directories
110+
.serverless
111+
112+
# FuseBox cache
113+
.fusebox/
114+
115+
# DynamoDB Local files
116+
.dynamodb/
117+
118+
# TernJS port file
119+
.tern-port
120+
121+
# Temporary folders
122+
tmp/
123+
temp/
124+
125+
# Editor directories and files
126+
.vscode/*
127+
!.vscode/extensions.json
128+
.idea
129+
*.suo
130+
*.ntvs*
131+
*.njsproj
132+
*.sln
133+
*.sw?

0 commit comments

Comments
 (0)