1+ # Git Ignore Configuration File
2+ # See https://git-scm.com/docs/gitignore for more details
3+
4+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
5+ # Project generated directories
6+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
7+ /build
8+ /coverage
9+ /node_modules
10+ /public
11+ dist /
12+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
13+ # Project generated files
14+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
15+ npm-debug.log *
16+ yarn-debug.log *
17+ yarn-error.log *
18+
19+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
20+ # Environment configuration files
21+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
22+ .env
23+ .env.local
24+ .env.development.local
25+ .env.test.local
26+ .env.production.local
27+ .envprod
28+ .envlocal
29+ .env.yml *
30+ .envdev
31+ .env *
32+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
33+ # IDE generated directories
34+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
35+ /.idea
36+ # /.vscode
37+
38+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
39+ # IDE generated files
40+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
41+ .project
42+ * .iml
43+
44+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
45+ # OS generated directories
46+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
47+ /__MACOSX
48+
49+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
50+ # OS generated files
51+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
52+ .DS_Store
53+ Thumbs.db
54+
55+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
56+ # Custom
57+ # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
58+ .bkp
59+ .env.local.yml
60+ .envdev
61+ audit.log
62+ /dist
0 commit comments