返回 social-analyzer
.gitignore
根目录 / .gitignore
1 # https://github.com/github/gitignore/blob/master/Node.gitignore
2
3 # Logs
4 logs
5 *.log
6 npm-debug.log*
7 yarn-debug.log*
8 yarn-error.log*
9 lerna-debug.log*
10
11 # Diagnostic reports (https://nodejs.org/api/report.html)
12 report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
13
14 # Runtime data
15 pids
16 *.pid
17 *.seed
18 *.pid.lock
19
20 # Directory for instrumented libs generated by jscoverage/JSCover
21 lib-cov
22
23 # Coverage directory used by tools like istanbul
24 coverage
25 *.lcov
26
27 # nyc test coverage
28 .nyc_output
29
30 # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
31 .grunt
32
33 # Bower dependency directory (https://bower.io/)
34 bower_components
35
36 # node-waf configuration
37 .lock-wscript
38
39 # Compiled binary addons (https://nodejs.org/api/addons.html)
40 build/Release
41
42 # Dependency directories
43 node_modules/
44 jspm_packages/
45
46 # Snowpack dependency directory (https://snowpack.dev/)
47 web_modules/
48
49 # TypeScript cache
50 *.tsbuildinfo
51
52 # Optional npm cache directory
53 .npm
54
55 # Optional eslint cache
56 .eslintcache
57
58 # Microbundle cache
59 .rpt2_cache/
60 .rts2_cache_cjs/
61 .rts2_cache_es/
62 .rts2_cache_umd/
63
64 # Optional REPL history
65 .node_repl_history
66
67 # Output of 'npm pack'
68 *.tgz
69
70 # Yarn Integrity file
71 .yarn-integrity
72
73 # dotenv environment variables file
74 .env
75 .env.test
76
77 # parcel-bundler cache (https://parceljs.org/)
78 .cache
79 .parcel-cache
80
81 # Next.js build output
82 .next
83 out
84
85 # Nuxt.js build / generate output
86 .nuxt
87 dist
88
89 # Gatsby files
90 .cache/
91 # Comment in the public line in if your project uses Gatsby and not Next.js
92 # https://nextjs.org/blog/next-9-1#public-directory-support
93 # public
94
95 # vuepress build output
96 .vuepress/dist
97
98 # Serverless directories
99 .serverless/
100
101 # FuseBox cache
102 .fusebox/
103
104 # DynamoDB Local files
105 .dynamodb/
106
107 # TernJS port file
108 .tern-port
109
110 # Stores VSCode versions used for testing VSCode extensions
111 .vscode-test
112
113 # yarn v2
114 .yarn/cache
115 .yarn/unplugged
116 .yarn/build-state.yml
117 .yarn/install-state.gz
118 .pnp.*
119
119 lines Plain Text