Skip to content

Commit 2e759b8

Browse files
committed
[Update] gitignore file
1 parent d6a8203 commit 2e759b8

File tree

1 file changed

+114
-56
lines changed

1 file changed

+114
-56
lines changed

.gitignore

100644100755
+114-56
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,119 @@
1-
# Logs
2-
logs
1+
######################################################################################
2+
# License: MIT - http://opensource.org/licenses/MIT #
3+
# Author: Patryk Rzucidlo (@ptkdev) <[email protected]> https://ptkdev.it #
4+
# Original: octocat - https://github.com/octocat #
5+
# Latest version: https://github.com/ptkdev/dotfiles #
6+
######################################################################################
7+
8+
# Compiled source #
9+
###################
10+
*.com
11+
*.class
12+
*.dll
13+
*.exe
14+
*.o
15+
*.so
16+
17+
# Packages #
18+
############
19+
*.7z
20+
*.dmg
21+
*.gz
22+
*.iso
23+
*.jar
24+
*.rar
25+
*.tar
26+
*.zip
27+
28+
# Eclipse #
29+
###########
30+
.classpath
31+
.project
32+
.settings
33+
.idea
34+
.idea/
35+
.metadata
36+
*.iml
37+
*.ipr
38+
proguard/
39+
40+
# Logs and databases #
41+
######################
42+
logs/*.log
43+
logs/screenshot/*.png
44+
logs/screenshot/*.jpg
345
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
8-
# Runtime data
46+
*.sql
47+
*.sqlite
48+
*.lock
49+
*.vscode
50+
yarn-debug.log
51+
yarn-error.log
52+
53+
# OS generated files #
54+
######################
55+
.DS_Store
56+
.DS_Store?
57+
._*
58+
.Spotlight-V100
59+
.Trashes
60+
ehthumbs.db
61+
Thumbs.db
62+
loginpin.txt
63+
64+
# Python #
65+
##########
66+
*.pyc
67+
*.pyo
68+
69+
# KDE/Linux generated files #
70+
#############################
71+
.directory
72+
73+
# Backup generated files #
74+
##########################
75+
*~
76+
*.swp
77+
*.bak
78+
*#
79+
80+
# Android #
81+
###########
82+
*.apk
83+
*.ap_
84+
*.dex
85+
bin/
86+
gen/
87+
.gradle/
88+
build/
89+
local.properties
90+
91+
# Vagrant #
92+
###########
93+
/.vagrant
94+
95+
# PHP #
96+
#######
97+
./config.php
98+
phpunit.xml
99+
/vendor
100+
composer.phar
101+
102+
# Runtime data #
103+
################
9104
pids
10105
*.pid
11106
*.seed
12107
*.pid.lock
13-
14-
# Directory for instrumented libs generated by jscoverage/JSCover
15-
lib-cov
16-
17-
# Coverage directory used by tools like istanbul
18-
coverage
19-
20-
# nyc test coverage
21-
.nyc_output
22-
23-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24-
.grunt
25-
26-
# Bower dependency directory (https://bower.io/)
27-
bower_components
28-
29-
# node-waf configuration
30-
.lock-wscript
31-
32-
# Compiled binary addons (https://nodejs.org/api/addons.html)
33-
build/Release
34-
35-
# Dependency directories
36-
node_modules/
37-
jspm_packages/
38-
39-
# TypeScript v1 declaration files
40-
typings/
41-
42-
# Optional npm cache directory
43-
.npm
44-
45-
# Optional eslint cache
46-
.eslintcache
47-
48-
# Optional REPL history
49-
.node_repl_history
50-
51-
# Output of 'npm pack'
52-
*.tgz
53-
54-
# Yarn Integrity file
55-
.yarn-integrity
56-
57-
# dotenv environment variables file
58-
.env
59-
60-
# next.js build output
61-
.next
108+
*.eslintcache
109+
110+
# NodeJS #
111+
##########
112+
npm-debug.log
113+
/node_modules
114+
/bower_components
115+
package-lock.json
116+
117+
# NodePress.js #
118+
################
119+
config.js

0 commit comments

Comments
 (0)