"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/.gitignore" (15 Jan 2021, 3035 Bytes) of package /linux/www/WhatWeb-0.5.5.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the latest
Fossies "Diffs" side-by-side code changes report for ".gitignore":
0.5.4_vs_0.5.5.
1 .project
2
3 # Created by https://www.gitignore.io/api/ruby,macos,linux,windows,eclipse
4
5 ### Eclipse ###
6
7 .metadata
8 #bin/
9 tmp/
10 *.tmp
11 *.bak
12 *.swp
13 *~.nib
14 local.properties
15 .settings/
16 .loadpath
17 .recommenders
18
19 # IntelliJ
20 .idea
21
22 # External tool builders
23 .externalToolBuilders/
24
25 # Locally stored "Eclipse launch configurations"
26 *.launch
27
28 # PyDev specific (Python IDE for Eclipse)
29 *.pydevproject
30
31 # CDT-specific (C/C++ Development Tooling)
32 .cproject
33
34 # Java annotation processor (APT)
35 .factorypath
36
37 # PDT-specific (PHP Development Tools)
38 .buildpath
39
40 # sbteclipse plugin
41 .target
42
43 # Tern plugin
44 .tern-project
45
46 # TeXlipse plugin
47 .texlipse
48
49 # STS (Spring Tool Suite)
50 .springBeans
51
52 # Code Recommenders
53 .recommenders/
54
55 # Scala IDE specific (Scala & Java development for Eclipse)
56 .cache-main
57 .scala_dependencies
58 .worksheet
59
60 ### Eclipse Patch ###
61 # Eclipse Core
62 .project
63
64 # JDT-specific (Eclipse Java Development Tools)
65 .classpath
66
67 ### Linux ###
68 *~
69
70 # temporary files which can be created if a process still has a handle open of a deleted file
71 .fuse_hidden*
72
73 # KDE directory preferences
74 .directory
75
76 # Linux trash folder which might appear on any partition or disk
77 .Trash-*
78
79 # .nfs files are created when an open file is removed but is still being accessed
80 .nfs*
81
82 ### macOS ###
83 *.DS_Store
84 .AppleDouble
85 .LSOverride
86
87 # Icon must end with two \r
88 Icon
89
90 # Thumbnails
91 ._*
92
93 # Files that might appear in the root of a volume
94 .DocumentRevisions-V100
95 .fseventsd
96 .Spotlight-V100
97 .TemporaryItems
98 .Trashes
99 .VolumeIcon.icns
100 .com.apple.timemachine.donotpresent
101
102 # Directories potentially created on remote AFP share
103 .AppleDB
104 .AppleDesktop
105 Network Trash Folder
106 Temporary Items
107 .apdisk
108
109 ### Ruby ###
110 *.gem
111 *.rbc
112 /.config
113 /coverage/
114 /InstalledFiles
115 /pkg/
116 /spec/reports/
117 /spec/examples.txt
118 /test/tmp/
119 /test/version_tmp/
120 /tmp/
121
122 # Used by dotenv library to load environment variables.
123 # .env
124
125 ## Specific to RubyMotion:
126 .dat*
127 .repl_history
128 build/
129 *.bridgesupport
130 build-iPhoneOS/
131 build-iPhoneSimulator/
132
133 ## Specific to RubyMotion (use of CocoaPods):
134 #
135 # We recommend against adding the Pods directory to your .gitignore. However
136 # you should judge for yourself, the pros and cons are mentioned at:
137 # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
138 #
139 # vendor/Pods/
140
141 ## Documentation cache and generated files:
142 /.yardoc/
143 /_yardoc/
144 /doc/
145 /rdoc/
146
147 ## Environment normalization:
148 /.bundle/
149 /vendor/bundle
150 /lib/bundler/man/
151
152 # for a library or gem, you might want to ignore these files since the code is
153 # intended to run in multiple environments; otherwise, check them in:
154 Gemfile.lock
155 .ruby-version
156 # .ruby-gemset
157
158 # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
159 .rvmrc
160
161 ### Windows ###
162 # Windows thumbnail cache files
163 Thumbs.db
164 ehthumbs.db
165 ehthumbs_vista.db
166
167 # Folder config file
168 Desktop.ini
169
170 # Recycle Bin used on file shares
171 $RECYCLE.BIN/
172
173 # Windows Installer files
174 *.cab
175 *.msi
176 *.msm
177 *.msp
178
179 # Windows shortcuts
180 *.lnk
181
182 # End of https://www.gitignore.io/api/ruby,macos,linux,windows,eclipse