First commit
[vchess.git] / .gitignore
1 # Logs
2 logs
3 *.log
4 npm-debug.log*
5 yarn-debug.log*
6 yarn-error.log*
7
8 # Runtime data
9 pids
10 *.pid
11 *.seed
12 *.pid.lock
13
14 # Temp files
15 *.swp
16 *~
17
18 # socket URL file
19 /public/javascripts/utils/socket_url.js
20
21 # CSS generated files
22 /public/stylesheets/*.map
23 /public/stylesheets/*.css
24
25 # Directory for instrumented libs generated by jscoverage/JSCover
26 lib-cov
27
28 # Coverage directory used by tools like istanbul
29 coverage
30
31 # nyc test coverage
32 .nyc_output
33
34 # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
35 .grunt
36
37 # Bower dependency directory (https://bower.io/)
38 bower_components
39
40 # node-waf configuration
41 .lock-wscript
42
43 # Compiled binary addons (https://nodejs.org/api/addons.html)
44 build/Release
45
46 # Dependency directories
47 node_modules/
48 jspm_packages/
49
50 # Typescript v1 declaration files
51 typings/
52
53 # Optional npm cache directory
54 .npm
55
56 # Optional eslint cache
57 .eslintcache
58
59 # Optional REPL history
60 .node_repl_history
61
62 # Output of 'npm pack'
63 *.tgz
64
65 # Yarn Integrity file
66 .yarn-integrity
67
68 # dotenv environment variables file
69 .env
70
71 # next.js build output
72 .next