Monzo-API 1.2.7__tar.gz → 1.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. monzo_api-1.3.0/.dcignore +1549 -0
  2. monzo_api-1.3.0/.editorconfig +376 -0
  3. monzo_api-1.3.0/.github/FUNDING.yml +2 -0
  4. monzo_api-1.3.0/.github/ISSUE_TEMPLATE/bug_report.md +25 -0
  5. monzo_api-1.3.0/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
  6. monzo_api-1.3.0/.github/dependabot.yml +16 -0
  7. monzo_api-1.3.0/.github/workflows/codeql-analysis.yml +48 -0
  8. monzo_api-1.3.0/.github/workflows/publish.yml +39 -0
  9. monzo_api-1.3.0/.github/workflows/uv.yml +83 -0
  10. monzo_api-1.3.0/.github/workflows/zizmor.yml +36 -0
  11. monzo_api-1.3.0/.gitignore +146 -0
  12. monzo_api-1.3.0/.sonarlint/connectedMode.json +4 -0
  13. monzo_api-1.3.0/CHANGELOG.rst +171 -0
  14. {monzo_api-1.2.7 → monzo_api-1.3.0}/LICENSE +1 -1
  15. {monzo_api-1.2.7 → monzo_api-1.3.0/Monzo_API.egg-info}/PKG-INFO +2 -2
  16. monzo_api-1.3.0/Monzo_API.egg-info/SOURCES.txt +121 -0
  17. {monzo_api-1.2.7/Monzo_API.egg-info → monzo_api-1.3.0}/PKG-INFO +2 -2
  18. monzo_api-1.3.0/SECURITY.md +31 -0
  19. monzo_api-1.3.0/docs/Makefile +20 -0
  20. monzo_api-1.3.0/docs/make.bat +35 -0
  21. monzo_api-1.3.0/docs/source/access_token.rst +187 -0
  22. monzo_api-1.3.0/docs/source/api_observations.rst +36 -0
  23. monzo_api-1.3.0/docs/source/basic_api_queries.rst +56 -0
  24. monzo_api-1.3.0/docs/source/changelog.rst +1 -0
  25. monzo_api-1.3.0/docs/source/conf.py +62 -0
  26. monzo_api-1.3.0/docs/source/developers.rst +56 -0
  27. monzo_api-1.3.0/docs/source/images/api_authorize_alert.png +0 -0
  28. monzo_api-1.3.0/docs/source/images/api_authorize_email.png +0 -0
  29. monzo_api-1.3.0/docs/source/images/api_authorize_login.png +0 -0
  30. monzo_api-1.3.0/docs/source/images/create-client-1.png +0 -0
  31. monzo_api-1.3.0/docs/source/images/create-client-2.png +0 -0
  32. monzo_api-1.3.0/docs/source/images/create-client-3.png +0 -0
  33. monzo_api-1.3.0/docs/source/images/create-client-4.png +0 -0
  34. monzo_api-1.3.0/docs/source/images/sign-in-1.png +0 -0
  35. monzo_api-1.3.0/docs/source/images/sign-in-2.png +0 -0
  36. monzo_api-1.3.0/docs/source/images/sign-in-3.png +0 -0
  37. monzo_api-1.3.0/docs/source/images/sign-in-alert.png +0 -0
  38. monzo_api-1.3.0/docs/source/images/sign-in-authorise.png +0 -0
  39. monzo_api-1.3.0/docs/source/images/sign-in-email.png +0 -0
  40. monzo_api-1.3.0/docs/source/index.rst +33 -0
  41. monzo_api-1.3.0/docs/source/license.rst +4 -0
  42. monzo_api-1.3.0/docs/source/modules.rst +7 -0
  43. monzo_api-1.3.0/docs/source/monzo.endpoints.rst +93 -0
  44. monzo_api-1.3.0/docs/source/monzo.handlers.rst +29 -0
  45. monzo_api-1.3.0/docs/source/monzo.rst +54 -0
  46. monzo_api-1.3.0/docs/source/monzo_setup.rst +133 -0
  47. monzo_api-1.3.0/docs/source/refreshing_tokens.rst +108 -0
  48. monzo_api-1.3.0/docs/source/tutorials.rst +13 -0
  49. monzo_api-1.3.0/examples/auth_step_01.py +12 -0
  50. monzo_api-1.3.0/examples/auth_step_02.py +29 -0
  51. monzo_api-1.3.0/examples/create_feed_item.py +40 -0
  52. monzo_api-1.3.0/examples/get_accounts.py +30 -0
  53. monzo_api-1.3.0/examples/get_whoami.py +29 -0
  54. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/authentication.py +40 -20
  55. monzo_api-1.3.0/monzo/endpoints/__init__.py +1 -0
  56. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/endpoints/attachment.py +12 -11
  57. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/endpoints/webhooks.py +18 -8
  58. monzo_api-1.3.0/monzo/handlers/__init__.py +1 -0
  59. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/handlers/filesystem.py +8 -5
  60. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/httpio.py +7 -2
  61. monzo_api-1.3.0/py.typed +0 -0
  62. {monzo_api-1.2.7 → monzo_api-1.3.0}/pyproject.toml +5 -1
  63. monzo_api-1.3.0/sonar-project.properties +4 -0
  64. monzo_api-1.3.0/tests/__init__.py +1 -0
  65. monzo_api-1.3.0/tests/helpers.py +83 -0
  66. monzo_api-1.3.0/tests/mock_payloads/Accounts.json +8 -0
  67. monzo_api-1.3.0/tests/mock_payloads/Annotate.json +10 -0
  68. monzo_api-1.3.0/tests/mock_payloads/Balance.json +10 -0
  69. monzo_api-1.3.0/tests/mock_payloads/FeedItem.json +13 -0
  70. monzo_api-1.3.0/tests/mock_payloads/Logout.json +8 -0
  71. monzo_api-1.3.0/tests/mock_payloads/Receipt.json +8 -0
  72. monzo_api-1.3.0/tests/mock_payloads/ReceiptCreate.json +28 -0
  73. monzo_api-1.3.0/tests/mock_payloads/ReceiptDelete.json +10 -0
  74. monzo_api-1.3.0/tests/mock_payloads/Transaction.json +11 -0
  75. monzo_api-1.3.0/tests/mock_payloads/TransactionFetchSingle.json +10 -0
  76. monzo_api-1.3.0/tests/mock_payloads/Webhooks.json +10 -0
  77. monzo_api-1.3.0/tests/mock_payloads/WebhooksCreate.json +11 -0
  78. monzo_api-1.3.0/tests/mock_payloads/WebhooksDelete.json +8 -0
  79. monzo_api-1.3.0/tests/mock_payloads/WhoAmI.json +8 -0
  80. monzo_api-1.3.0/tests/mock_payloads/__init__.py +1 -0
  81. monzo_api-1.3.0/tests/mock_responses/Accounts.json +32 -0
  82. monzo_api-1.3.0/tests/mock_responses/Accounts_Flex_Loan_Type.json +24 -0
  83. monzo_api-1.3.0/tests/mock_responses/Accounts_Flex_Type.json +24 -0
  84. monzo_api-1.3.0/tests/mock_responses/Accounts_Loan_Type.json +24 -0
  85. monzo_api-1.3.0/tests/mock_responses/Accounts_Unknown_Type.json +32 -0
  86. monzo_api-1.3.0/tests/mock_responses/Annotate.json +53 -0
  87. monzo_api-1.3.0/tests/mock_responses/Balance.json +19 -0
  88. monzo_api-1.3.0/tests/mock_responses/FeedItem.json +5 -0
  89. monzo_api-1.3.0/tests/mock_responses/Logout.json +7 -0
  90. monzo_api-1.3.0/tests/mock_responses/Receipt.json +36 -0
  91. monzo_api-1.3.0/tests/mock_responses/ReceiptCreated.json +24 -0
  92. monzo_api-1.3.0/tests/mock_responses/ReceiptDeleted.json +32 -0
  93. monzo_api-1.3.0/tests/mock_responses/Transaction.json +54 -0
  94. monzo_api-1.3.0/tests/mock_responses/TransactionFetchSingle.json +52 -0
  95. monzo_api-1.3.0/tests/mock_responses/WebhooksCreated.json +11 -0
  96. monzo_api-1.3.0/tests/mock_responses/WebhooksDeleted.json +5 -0
  97. monzo_api-1.3.0/tests/mock_responses/WebhooksNone.json +7 -0
  98. monzo_api-1.3.0/tests/mock_responses/WebhooksOne.json +13 -0
  99. monzo_api-1.3.0/tests/mock_responses/WhoAmI.json +9 -0
  100. monzo_api-1.3.0/tests/mock_responses/__init__.py +1 -0
  101. {monzo_api-1.2.7 → monzo_api-1.3.0}/tests/test_authentication.py +82 -19
  102. {monzo_api-1.2.7 → monzo_api-1.3.0}/tests/test_endpoints.py +50 -0
  103. monzo_api-1.3.0/tests/test_httpio_errors.py +47 -0
  104. monzo_api-1.3.0/uv.lock +551 -0
  105. monzo_api-1.2.7/Monzo_API.egg-info/SOURCES.txt +0 -30
  106. monzo_api-1.2.7/tests/test_httpio_errors.py +0 -15
  107. {monzo_api-1.2.7 → monzo_api-1.3.0}/Monzo_API.egg-info/dependency_links.txt +0 -0
  108. {monzo_api-1.2.7 → monzo_api-1.3.0}/Monzo_API.egg-info/top_level.txt +0 -0
  109. {monzo_api-1.2.7 → monzo_api-1.3.0}/README.rst +0 -0
  110. {monzo_api-1.2.7/monzo → monzo_api-1.3.0/docs/source}/__init__.py +0 -0
  111. {monzo_api-1.2.7/monzo/endpoints → monzo_api-1.3.0/examples}/__init__.py +0 -0
  112. {monzo_api-1.2.7/monzo/handlers → monzo_api-1.3.0/monzo}/__init__.py +0 -0
  113. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/endpoints/account.py +0 -0
  114. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/endpoints/balance.py +0 -0
  115. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/endpoints/feed_item.py +0 -0
  116. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/endpoints/monzo.py +0 -0
  117. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/endpoints/pot.py +0 -0
  118. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/endpoints/receipt.py +0 -0
  119. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/endpoints/transaction.py +0 -0
  120. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/endpoints/whoami.py +0 -0
  121. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/exceptions.py +0 -0
  122. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/handlers/storage.py +0 -0
  123. {monzo_api-1.2.7 → monzo_api-1.3.0}/monzo/helpers.py +0 -0
  124. {monzo_api-1.2.7 → monzo_api-1.3.0}/setup.cfg +0 -0
  125. {monzo_api-1.2.7 → monzo_api-1.3.0}/tests/test_payload.py +0 -0
@@ -0,0 +1,1549 @@
1
+ # Write glob rules for ignored files.
2
+ # Check syntax on https://deepcode.freshdesk.com/support/solutions/articles/60000531055-how-can-i-ignore-files-or-directories-
3
+ # Check examples on https://github.com/github/gitignore
4
+
5
+ .idea
6
+
7
+ # Hidden directories
8
+ .*/
9
+
10
+ # FuelPHP
11
+ /fuel/vendor
12
+ /docs/
13
+ /fuel/app/logs/*/*/*
14
+ /fuel/app/cache/*/*
15
+
16
+ # Godot
17
+ data_*/
18
+
19
+ # Lilypond
20
+ *~
21
+
22
+ # Nim
23
+ nimcache/
24
+ nimblecache/
25
+ htmldocs/
26
+
27
+ # Android
28
+ bin/
29
+ gen/
30
+ out/
31
+ build/
32
+ proguard/
33
+ captures/
34
+ freeline/
35
+ fastlane/screenshots
36
+ fastlane/test_output
37
+ lint/intermediates/
38
+ lint/generated/
39
+ lint/outputs/
40
+ lint/tmp/
41
+
42
+ # UnrealEngine
43
+ Binaries/*
44
+ Plugins/*/Binaries/*
45
+ Build/*
46
+ !Build/*/
47
+ Build/*/**
48
+ Saved/*
49
+ Intermediate/*
50
+ Plugins/*/Intermediate/*
51
+ DerivedDataCache/*
52
+
53
+ # Zephir
54
+ ext/build/
55
+ ext/modules/
56
+ ext/Makefile*
57
+ ext/config*
58
+ ext/autom4te*
59
+ ext/install-sh
60
+ ext/missing
61
+ ext/mkinstalldirs
62
+ ext/libtool
63
+
64
+ # Typo3
65
+ /fileadmin/user_upload/
66
+ /fileadmin/_temp_/
67
+ /fileadmin/_processed_/
68
+ /uploads/
69
+ /typo3conf/temp_CACHED*
70
+ /typo3conf/ENABLE_INSTALL_TOOL
71
+ /FIRST_INSTALL
72
+ /typo3
73
+ /Packages
74
+ /typo3temp/
75
+
76
+ # Actionscript
77
+ bin-debug/
78
+ bin-release/
79
+ [Oo]bj/
80
+ [Bb]in/
81
+
82
+ # WordPress
83
+ !wp-content/
84
+ wp-content/*
85
+ !wp-content/mu-plugins/
86
+ !wp-content/plugins/
87
+ !wp-content/themes/
88
+ wp-content/themes/twenty*/
89
+ node_modules/
90
+
91
+ # Lithium
92
+ libraries/*
93
+ resources/tmp/*
94
+
95
+ # Python
96
+ __pycache__/
97
+ build/
98
+ develop-eggs/
99
+ dist/
100
+ downloads/
101
+ eggs/
102
+ lib/
103
+ lib64/
104
+ parts/
105
+ sdist/
106
+ var/
107
+ wheels/
108
+ share/python-wheels/
109
+ *.egg-info/
110
+ MANIFEST
111
+ htmlcov/
112
+ cover/
113
+ instance/
114
+ docs/_build/
115
+ target/
116
+ profile_default/
117
+ __pypackages__/
118
+ celerybeat-schedule
119
+ env/
120
+ venv/
121
+ ENV/
122
+ env.bak/
123
+ venv.bak/
124
+ /site
125
+ cython_debug/
126
+
127
+ # VVVV
128
+ bin/
129
+
130
+ # CodeIgniter
131
+ */config/development
132
+ */cache/*
133
+ application/logs/*
134
+ /vendor/
135
+
136
+ # AppEngine
137
+ appengine-generated/
138
+
139
+ # Objective-C
140
+ xcuserdata/
141
+ build/
142
+ DerivedData/
143
+ Carthage/Build/
144
+ fastlane/test_output
145
+ iOSInjectionProject/
146
+
147
+ # GWT
148
+ war/gwt_bree/
149
+ gwt-unitCache/
150
+ war/WEB-INF/deploy/
151
+ war/WEB-INF/classes/
152
+ www-test/
153
+
154
+ # Delphi
155
+ __history/
156
+ __recovery/
157
+ modules/
158
+
159
+ # ROS
160
+ devel/
161
+ logs/
162
+ build/
163
+ bin/
164
+ lib/
165
+ msg_gen/
166
+ srv_gen/
167
+ build_isolated/
168
+ devel_isolated/
169
+ /cfg/cpp/
170
+ qtcreator-*
171
+ /planning/cfg
172
+ /planning/docs
173
+ *~
174
+ CATKIN_IGNORE
175
+
176
+ # Stella
177
+ obj/
178
+
179
+ # Jekyll
180
+ _site/
181
+
182
+ # MetaProgrammingSystem
183
+ classes_gen
184
+ source_gen
185
+ test_gen
186
+
187
+ # JENKINS_HOME
188
+ !/jobs
189
+ jobs/**
190
+ !jobs/**/
191
+ builds
192
+ indexing
193
+ jobs/**/*workspace
194
+
195
+ # Leiningen
196
+ /lib/
197
+ /classes/
198
+ /target/
199
+ /checkouts/
200
+
201
+ # Laravel
202
+ /vendor/
203
+ node_modules/
204
+ app/storage/
205
+ public/storage
206
+ public/hot
207
+ public_html/storage
208
+ public_html/hot
209
+
210
+ # R
211
+ /*.Rcheck/
212
+ *_cache/
213
+ /cache/
214
+ docs/
215
+ po/*~
216
+
217
+ # Processing
218
+ applet
219
+ out
220
+
221
+ # GitBook
222
+ node_modules
223
+ _book
224
+
225
+ # LemonStand
226
+ /config/*
227
+ /controllers/*
228
+ /init/*
229
+ /logs/*
230
+ /phproad/*
231
+ /temp/*
232
+ /uploaded/*
233
+ /installer_files/*
234
+ /modules/backend/*
235
+ /modules/blog/*
236
+ /modules/cms/*
237
+ /modules/core/*
238
+ /modules/session/*
239
+ /modules/shop/*
240
+ /modules/system/*
241
+ /modules/users/*
242
+
243
+ # ArchLinuxPackages
244
+ pkg/
245
+
246
+ # Swift
247
+ xcuserdata/
248
+ build/
249
+ DerivedData/
250
+ Carthage/Build/
251
+ Dependencies/
252
+ fastlane/test_output
253
+ iOSInjectionProject/
254
+
255
+ # Packer
256
+ packer_cache/
257
+
258
+ # Elixir
259
+ /_build
260
+ /cover
261
+ /deps
262
+ /doc
263
+
264
+ # Phalcon
265
+ /cache/
266
+ /config/development/
267
+
268
+ # Unity
269
+ /[Ll]ibrary/
270
+ /[Tt]emp/
271
+ /[Oo]bj/
272
+ /[Bb]uild/
273
+ /[Bb]uilds/
274
+ /[Ll]ogs/
275
+ /[Uu]ser[Ss]ettings/
276
+ /[Mm]emoryCaptures/
277
+ /[Aa]ssets/Plugins/Editor/JetBrains*
278
+ ExportedObj/
279
+ /[Aa]ssets/[Ss]treamingAssets/aa/*
280
+
281
+ # Scrivener
282
+ */QuickLook/
283
+
284
+ # Kohana
285
+ application/cache/*
286
+ application/logs/*
287
+
288
+ # Prestashop
289
+ /cache/*
290
+ !/cache/push/activity
291
+ !/cache/push/trends
292
+ /download/*
293
+ /img/*
294
+ !/img/jquery-ui
295
+ !/img/scenes
296
+ /upload/*
297
+ /vendor/*
298
+ /docs/phpdoc-sf/
299
+ /admin-dev/autoupgrade/*
300
+ /admin-dev/backups/*
301
+ /admin-dev/import/*
302
+ /admin-dev/export/*
303
+ themes/*/cache/*
304
+ config/xml/*
305
+ config/themes/*
306
+ modules/*
307
+ override/*
308
+ themes/*/
309
+ !themes/classic
310
+ !themes/_core
311
+ !themes/_libraries
312
+ bower_components/
313
+ node_modules/
314
+ php-cs-fixer
315
+ translations/*
316
+ mails/*
317
+ !mails/themes/
318
+ !mails/_partials/
319
+ themes/default-bootstrap/lang/*
320
+ themes/default-bootstrap/mails/*
321
+ !themes/default-bootstrap/mails/en/
322
+ themes/default-bootstrap/modules/*/mails/*
323
+ !themes/default-bootstrap/modules/*/mails/en
324
+ /bin/
325
+ /app/Resources/translations/*
326
+ !/app/Resources/translations/default
327
+ /build/
328
+ /var/*
329
+ !/var/cache
330
+ /var/cache/*
331
+ !/var/logs
332
+ /var/logs/*
333
+ !/var/sessions
334
+ /var/sessions/*
335
+ /vendor/
336
+ /web/bundles/
337
+
338
+ # ExtJs
339
+ build/
340
+ ext/
341
+
342
+ # CMake
343
+ CMakeFiles
344
+ CMakeScripts
345
+ Testing
346
+ Makefile
347
+ _deps
348
+
349
+ # Umbraco
350
+ **/App_Data/Logs/
351
+ **/App_Data/[Pp]review/
352
+ **/App_Data/TEMP/
353
+ **/App_Data/NuGetBackup/
354
+ !**/App_Data/[Pp]ackages/*
355
+ !**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages/*
356
+ !**/[Uu]mbraco/[Vv]iews/[Pp]ackages/*
357
+ **/App_Data/cache/
358
+
359
+ # CakePHP
360
+ /vendor/*
361
+ /tmp/cache/models/*
362
+ !/tmp/cache/models/empty
363
+ /tmp/cache/persistent/*
364
+ !/tmp/cache/persistent/empty
365
+ /tmp/cache/views/*
366
+ !/tmp/cache/views/empty
367
+ /tmp/sessions/*
368
+ !/tmp/sessions/empty
369
+ /tmp/tests/*
370
+ !/tmp/tests/empty
371
+ /logs/*
372
+ !/logs/empty
373
+ /app/tmp/*
374
+ /vendors/*
375
+
376
+ # Java
377
+ hs_err_pid*
378
+
379
+ # Symfony
380
+ /app/cache/*
381
+ /app/logs/*
382
+ /app/spool/*
383
+ /var/cache/*
384
+ /var/logs/*
385
+ /var/sessions/*
386
+ /var/log/*
387
+ /bin/*
388
+ !bin/console
389
+ !bin/symfony_requirements
390
+ /vendor/
391
+ /web/bundles/
392
+ /web/uploads/
393
+ /build/
394
+ **/Entity/*~
395
+
396
+ # Composer
397
+ /vendor/
398
+
399
+ # SymphonyCMS
400
+ manifest/cache/
401
+ manifest/logs/
402
+ manifest/tmp/
403
+ symphony/
404
+ workspace/uploads/
405
+
406
+ # JBoss6
407
+ /server/all/data
408
+ /server/all/log
409
+ /server/all/tmp
410
+ /server/all/work
411
+ /server/default/data
412
+ /server/default/log
413
+ /server/default/tmp
414
+ /server/default/work
415
+ /server/minimal/data
416
+ /server/minimal/log
417
+ /server/minimal/tmp
418
+ /server/minimal/work
419
+ /server/jbossweb-standalone/data
420
+ /server/jbossweb-standalone/log
421
+ /server/jbossweb-standalone/tmp
422
+ /server/jbossweb-standalone/work
423
+ /server/standard/data
424
+ /server/standard/log
425
+ /server/standard/tmp
426
+ /server/standard/work
427
+
428
+ # JBoss4
429
+ /server/all/data
430
+ /server/all/log
431
+ /server/all/tmp
432
+ /server/all/work
433
+ /server/default/data
434
+ /server/default/log
435
+ /server/default/tmp
436
+ /server/default/work
437
+ /server/minimal/data
438
+ /server/minimal/log
439
+ /server/minimal/tmp
440
+ /server/minimal/work
441
+
442
+ # Red
443
+ quick-test/runnable/
444
+ system/tests/source/units/auto-tests/
445
+ tests/source/units/auto-tests/
446
+
447
+ # Snap
448
+ parts/
449
+ prime/
450
+ stage/
451
+
452
+ # Splunk
453
+ local
454
+
455
+ # Hugo
456
+ /public/
457
+ /resources/_gen/
458
+
459
+ # Bazel
460
+ /bazel-*
461
+
462
+ # Nikola
463
+ cache/
464
+ output/
465
+
466
+ # JupyterNotebooks
467
+ profile_default/
468
+
469
+ # Puppet
470
+ pkg/*
471
+ spec/fixtures/*
472
+ coverage/*
473
+ vendor/*
474
+
475
+ # Racket
476
+ compiled/
477
+
478
+ # Phoenix
479
+ /tmp
480
+ /node_modules
481
+ /assets/node_modules
482
+ /priv/static/
483
+ /installer/_build
484
+ /installer/tmp
485
+ /installer/doc
486
+ /installer/deps
487
+
488
+ # Logtalk
489
+ lgt_tmp/
490
+ logtalk_tester_logs/
491
+ logtalk_doclet_logs/
492
+
493
+ # NWjs
494
+ locales/
495
+ pnacl/
496
+
497
+ # Cordova
498
+ /platforms
499
+
500
+ # Vue
501
+ docs/_book
502
+ test/
503
+
504
+ # Kentico
505
+ !CMS/CMSAdminControls/*/
506
+ !CMS/CMSModules/System/*/
507
+ !CMS/App_Data/CIRepository/**
508
+ CMS/App_Data/AzureCache
509
+ CMS/App_Data/AzureTemp
510
+ CMS/App_Data/CMSTemp
511
+ CMS/App_Data/Persistent
512
+ CMS/CMSSiteUtils/Export
513
+ CMS/CMSSiteUtils/Import
514
+ CMS/App_Data/CMSModules/SmartSearch/**
515
+ !CMS/App_Data/CMSModules/SmartSearch/*/
516
+ !CMS/App_Data/CMSModules/SmartSearch/_StopWords/**
517
+ !CMS/App_Data/CMSModules/SmartSearch/_Synonyms/**
518
+ CMS/App_Data/DancingGoat
519
+ CMS/App_Data/Templates/CommunitySite
520
+ CMS/App_Data/Templates/CorporateSite
521
+ CMS/App_Data/Templates/DancingGoat
522
+ CMS/App_Data/Templates/EcommerceSite
523
+ CMS/App_Data/Templates/IntranetPortal
524
+ CMS/App_Data/Templates/PersonalSite
525
+ CMS/App_Themes/CommunitySite
526
+ CMS/App_Themes/CorporateSite
527
+ CMS/App_Themes/EcommerceSite
528
+ CMS/App_Themes/IntranetPortal*
529
+ CMS/App_Themes/PersonalSite
530
+ CMS/CMSTemplates/CorporateSite
531
+ CMS/CommunitySite
532
+ CMS/CorporateSite
533
+ CMS/DancingGoat
534
+ CMS/EcommerceSite
535
+ CMS/IntranetPortal
536
+ CMS/PersonalSite
537
+
538
+ # InforCMS
539
+ [Mm]odel/[Dd]eployment
540
+ !Model/Portal/*/SupportFiles/[Bb]in/
541
+ !Model/Portal/PortalTemplates/*/SupportFiles/[Bb]in
542
+
543
+ # Xilinx
544
+ *_synth_*
545
+ */*/bd/*/hdl
546
+ */*/*/bd/*/hdl
547
+ */*/bd/*/ip/*/*/
548
+ */*/*/bd/*/ip/*/*/
549
+ hw_handoff
550
+ ipshared
551
+
552
+ # Pimcore
553
+ /pimcore
554
+ /website/var/assets/*
555
+ /website/var/backup/*
556
+ /website/var/cache/*
557
+ /website/var/classes/Object*
558
+ !/website/var/classes/objectbricks
559
+ /website/var/config/Geo*
560
+ /website/var/config/object/*
561
+ /website/var/config/portal/*
562
+ /website/var/config/sqlreport/*
563
+ /website/var/email/*
564
+ /website/var/recyclebin/*
565
+ /website/var/search/*
566
+ /website/var/system/*
567
+ /website/var/tmp/*
568
+ /website/var/versions/asset/*
569
+ /website/var/versions/document/*
570
+ /website/var/versions/object/*
571
+ /website/var/user-image/*
572
+
573
+ # Magento2
574
+ /sitemap
575
+ /pub/sitemap
576
+ /app/config_sandbox
577
+ /app/code/Magento/TestModule*
578
+ /pub/media/attribute/*
579
+ /pub/media/analytics/*
580
+ /pub/media/catalog/*
581
+ /pub/media/customer/*
582
+ /pub/media/downloadable/*
583
+ /pub/media/favicon/*
584
+ /pub/media/import/*
585
+ /pub/media/logo/*
586
+ /pub/media/theme/*
587
+ /pub/media/theme_customization/*
588
+ /pub/media/wysiwyg/*
589
+ /pub/media/tmp/*
590
+ /pub/media/captcha/*
591
+ /pub/static/*
592
+ /var/*
593
+ /vendor/*
594
+ /generated/*
595
+
596
+ # Bitrix
597
+ /bitrix/*
598
+ !/bitrix/templates
599
+ !/bitrix/components
600
+ /bitrix/components/bitrix
601
+ !/bitrix/gadgets
602
+ /bitrix/gadgets/bitrix
603
+ !/bitrix/php_interface/
604
+ /upload/
605
+
606
+ # Drupal7
607
+ files/
608
+ sites/*/files
609
+ sites/*/private
610
+ sites/*/translations
611
+ /includes
612
+ /misc
613
+ /modules
614
+ /profiles
615
+ /scripts
616
+ /themes
617
+
618
+ # CodeSniffer
619
+ /wpcs/*
620
+
621
+ # Jigsaw
622
+ build_*
623
+
624
+ # Magento1
625
+ /media/*
626
+ !/media/customer
627
+ /media/customer/*
628
+ !/media/dhl
629
+ /media/dhl/*
630
+ !/media/downloadable
631
+ /media/downloadable/*
632
+ !/media/xmlconnect
633
+ /media/xmlconnect/*
634
+ !/media/xmlconnect/custom
635
+ /media/xmlconnect/custom/*
636
+ !/media/xmlconnect/original
637
+ /media/xmlconnect/original/*
638
+ !/media/xmlconnect/system
639
+ /media/xmlconnect/system/*
640
+ /var/*
641
+ !/var/package
642
+ /var/package/*
643
+
644
+ # ThinkPHP
645
+ /Application/Runtime/
646
+
647
+ # AtmelStudio
648
+ [Dd]ebug/
649
+ [Rr]elease/
650
+
651
+ # IAR_EWARM
652
+ EWARM/**/Obj
653
+ EWARM/**/List
654
+ EWARM/**/Exe
655
+ EWARM/settings
656
+
657
+ # esp-idf
658
+ build/
659
+ sdkconfig
660
+
661
+ # Concrete5
662
+ error_log
663
+ files/cache/*
664
+ files/tmp/*
665
+ /application/files/*
666
+ /updates/*
667
+
668
+ # Drupal
669
+ /sites/*/files
670
+ /sites/*/public
671
+ /sites/*/private
672
+ /sites/*/files-public
673
+ /sites/*/files-private
674
+ /sites/*/translations
675
+ /sites/*/tmp
676
+ /sites/*/cache
677
+ /sites/simpletest
678
+ /core
679
+ /vendor
680
+
681
+ # Mercury
682
+ Mercury/
683
+
684
+ # Joomla
685
+ /administrator/cache/*
686
+ /administrator/components/com_actionlogs/*
687
+ /administrator/components/com_admin/*
688
+ /administrator/components/com_ajax/*
689
+ /administrator/components/com_associations/*
690
+ /administrator/components/com_banners/*
691
+ /administrator/components/com_cache/*
692
+ /administrator/components/com_categories/*
693
+ /administrator/components/com_checkin/*
694
+ /administrator/components/com_config/*
695
+ /administrator/components/com_contact/*
696
+ /administrator/components/com_content/*
697
+ /administrator/components/com_contenthistory/*
698
+ /administrator/components/com_cpanel/*
699
+ /administrator/components/com_fields/*
700
+ /administrator/components/com_finder/*
701
+ /administrator/components/com_installer/*
702
+ /administrator/components/com_joomlaupdate/*
703
+ /administrator/components/com_languages/*
704
+ /administrator/components/com_login/*
705
+ /administrator/components/com_media/*
706
+ /administrator/components/com_menus/*
707
+ /administrator/components/com_messages/*
708
+ /administrator/components/com_modules/*
709
+ /administrator/components/com_newsfeeds/*
710
+ /administrator/components/com_plugins/*
711
+ /administrator/components/com_postinstall/*
712
+ /administrator/components/com_privacy/*
713
+ /administrator/components/com_redirect/*
714
+ /administrator/components/com_search/*
715
+ /administrator/components/com_tags/*
716
+ /administrator/components/com_templates/*
717
+ /administrator/components/com_users/*
718
+ /administrator/help/*
719
+ /administrator/includes/*
720
+ /administrator/language/overrides/*
721
+ /administrator/logs/*
722
+ /administrator/modules/mod_custom/*
723
+ /administrator/modules/mod_feed/*
724
+ /administrator/modules/mod_latest/*
725
+ /administrator/modules/mod_latestactions/*
726
+ /administrator/modules/mod_logged/*
727
+ /administrator/modules/mod_login/*
728
+ /administrator/modules/mod_menu/*
729
+ /administrator/modules/mod_multilangstatus/*
730
+ /administrator/modules/mod_online/*
731
+ /administrator/modules/mod_popular/*
732
+ /administrator/modules/mod_privacy_dashboard/*
733
+ /administrator/modules/mod_quickicon/*
734
+ /administrator/modules/mod_sampledata/*
735
+ /administrator/modules/mod_stats_admin/*
736
+ /administrator/modules/mod_status/*
737
+ /administrator/modules/mod_submenu/*
738
+ /administrator/modules/mod_title/*
739
+ /administrator/modules/mod_toolbar/*
740
+ /administrator/modules/mod_unread/*
741
+ /administrator/modules/mod_version/*
742
+ /administrator/templates/hathor/*
743
+ /administrator/templates/isis/*
744
+ /administrator/templates/system/*
745
+ /bin/*
746
+ /cache/*
747
+ /cli/*
748
+ /components/com_ajax/*
749
+ /components/com_banners/*
750
+ /components/com_config/*
751
+ /components/com_contact/*
752
+ /components/com_content/*
753
+ /components/com_contenthistory/*
754
+ /components/com_fields/*
755
+ /components/com_finder/*
756
+ /components/com_mailto/*
757
+ /components/com_media/*
758
+ /components/com_menus/*
759
+ /components/com_modules/*
760
+ /components/com_newsfeeds/*
761
+ /components/com_privacy/*
762
+ /components/com_search/*
763
+ /components/com_tags/*
764
+ /components/com_users/*
765
+ /components/com_wrapper/*
766
+ /images/banners/*
767
+ /images/headers/*
768
+ /images/sampledata/*
769
+ /images/joomla*
770
+ /includes/*
771
+ /installation/*
772
+ /language/overrides/*
773
+ /layouts/joomla/*
774
+ /layouts/libraries/*
775
+ /layouts/plugins/*
776
+ /libraries/cms/*
777
+ /libraries/fof/*
778
+ /libraries/idna_convert/*
779
+ /libraries/joomla/*
780
+ /libraries/legacy/*
781
+ /libraries/php-encryption/*
782
+ /libraries/phpass/*
783
+ /libraries/phpmailer/*
784
+ /libraries/phputf8/*
785
+ /libraries/simplepie/*
786
+ /libraries/vendor/*
787
+ /media/cms/*
788
+ /media/com_associations/*
789
+ /media/com_contact/*
790
+ /media/com_content/*
791
+ /media/com_contenthistory/*
792
+ /media/com_fields/*
793
+ /media/com_finder/*
794
+ /media/com_joomlaupdate/*
795
+ /media/com_menus/*
796
+ /media/com_modules/*
797
+ /media/com_wrapper/*
798
+ /media/contacts/*
799
+ /media/editors/*
800
+ /media/jui/*
801
+ /media/mailto/*
802
+ /media/media/*
803
+ /media/mod_languages/*
804
+ /media/mod_sampledata/*
805
+ /media/overrider/*
806
+ /media/plg_captcha_recaptcha/*
807
+ /media/plg_captcha_recaptcha_invisible/*
808
+ /media/plg_quickicon_extensionupdate/*
809
+ /media/plg_quickicon_joomlaupdate/*
810
+ /media/plg_quickicon_privacycheck/*
811
+ /media/plg_system_highlight/*
812
+ /media/plg_system_stats/*
813
+ /media/plg_twofactorauth_totp/*
814
+ /media/system/*
815
+ /modules/mod_articles_archive/*
816
+ /modules/mod_articles_categories/*
817
+ /modules/mod_articles_category/*
818
+ /modules/mod_articles_latest/*
819
+ /modules/mod_articles_news/*
820
+ /modules/mod_articles_popular/*
821
+ /modules/mod_banners/*
822
+ /modules/mod_breadcrumbs/*
823
+ /modules/mod_custom/*
824
+ /modules/mod_feed/*
825
+ /modules/mod_finder/*
826
+ /modules/mod_footer/*
827
+ /modules/mod_languages/*
828
+ /modules/mod_login/*
829
+ /modules/mod_menu/*
830
+ /modules/mod_random_image/*
831
+ /modules/mod_related_items/*
832
+ /modules/mod_search/*
833
+ /modules/mod_stats/*
834
+ /modules/mod_syndicate/*
835
+ /modules/mod_tags_popular/*
836
+ /modules/mod_tags_similar/*
837
+ /modules/mod_users_latest/*
838
+ /modules/mod_whosonline/*
839
+ /modules/mod_wrapper/*
840
+ /plugins/actionlog/joomla/*
841
+ /plugins/authentication/cookie/*
842
+ /plugins/authentication/example/*
843
+ /plugins/authentication/gmail/*
844
+ /plugins/authentication/joomla/*
845
+ /plugins/authentication/ldap/*
846
+ /plugins/captcha/recaptcha/*
847
+ /plugins/captcha/recaptcha_invisible/*
848
+ /plugins/content/confirmconsent/*
849
+ /plugins/content/contact/*
850
+ /plugins/content/emailcloak/*
851
+ /plugins/content/example/*
852
+ /plugins/content/fields/*
853
+ /plugins/content/finder/*
854
+ /plugins/content/geshi/*
855
+ /plugins/content/joomla/*
856
+ /plugins/content/loadmodule/*
857
+ /plugins/content/pagebreak/*
858
+ /plugins/content/pagenavigation/*
859
+ /plugins/content/vote/*
860
+ /plugins/editors/codemirror/*
861
+ /plugins/editors/none/*
862
+ /plugins/editors/tinymce/*
863
+ /plugins/editors-xtd/article/*
864
+ /plugins/editors-xtd/contact/*
865
+ /plugins/editors-xtd/fields/*
866
+ /plugins/editors-xtd/image/*
867
+ /plugins/editors-xtd/menu/*
868
+ /plugins/editors-xtd/module/*
869
+ /plugins/editors-xtd/pagebreak/*
870
+ /plugins/editors-xtd/readmore/*
871
+ /plugins/extension/example/*
872
+ /plugins/extension/joomla/*
873
+ /plugins/fields/calendar/*
874
+ /plugins/fields/checkboxes/*
875
+ /plugins/fields/color/*
876
+ /plugins/fields/editor/*
877
+ /plugins/fields/imagelist/*
878
+ /plugins/fields/integer/*
879
+ /plugins/fields/list/*
880
+ /plugins/fields/media/*
881
+ /plugins/fields/radio/*
882
+ /plugins/fields/repeatable/*
883
+ /plugins/fields/sql/*
884
+ /plugins/fields/text/*
885
+ /plugins/fields/textarea/*
886
+ /plugins/fields/url/*
887
+ /plugins/fields/user/*
888
+ /plugins/fields/usergrouplist/*
889
+ /plugins/finder/categories/*
890
+ /plugins/finder/contacts/*
891
+ /plugins/finder/content/*
892
+ /plugins/finder/newsfeeds/*
893
+ /plugins/finder/tags/*
894
+ /plugins/installer/folderinstaller/*
895
+ /plugins/installer/packageinstaller/*
896
+ /plugins/installer/urlinstaller/*
897
+ /plugins/privacy/actionlogs/*
898
+ /plugins/privacy/consents/*
899
+ /plugins/privacy/contact/*
900
+ /plugins/privacy/content/*
901
+ /plugins/privacy/message/*
902
+ /plugins/privacy/user/*
903
+ /plugins/quickicon/extensionupdate/*
904
+ /plugins/quickicon/joomlaupdate/*
905
+ /plugins/quickicon/phpversioncheck/*
906
+ /plugins/quickicon/privacycheck/*
907
+ /plugins/sampledata/blog/*
908
+ /plugins/search/categories/*
909
+ /plugins/search/contacts/*
910
+ /plugins/search/content/*
911
+ /plugins/search/newsfeeds/*
912
+ /plugins/search/tags/*
913
+ /plugins/search/weblinks/*
914
+ /plugins/system/actionlogs/*
915
+ /plugins/system/cache/*
916
+ /plugins/system/debug/*
917
+ /plugins/system/fields/*
918
+ /plugins/system/highlight/*
919
+ /plugins/system/languagecode/*
920
+ /plugins/system/languagefilter/*
921
+ /plugins/system/log/*
922
+ /plugins/system/logout/*
923
+ /plugins/system/logrotation/*
924
+ /plugins/system/p3p/*
925
+ /plugins/system/privacyconsent/*
926
+ /plugins/system/redirect/*
927
+ /plugins/system/remember/*
928
+ /plugins/system/sef/*
929
+ /plugins/system/sessiongc/*
930
+ /plugins/system/stats/*
931
+ /plugins/system/updatenotification/*
932
+ /plugins/twofactorauth/totp/*
933
+ /plugins/twofactorauth/yubikey/*
934
+ /plugins/user/contactcreator/*
935
+ /plugins/user/example/*
936
+ /plugins/user/joomla/*
937
+ /plugins/user/profile/*
938
+ /plugins/user/terms/*
939
+ /templates/beez3/*
940
+ /templates/protostar/*
941
+ /templates/system/*
942
+ /tmp/*
943
+
944
+ # Yii
945
+ assets/*
946
+ protected/runtime/*
947
+ themes/classic/views/
948
+
949
+ # Rust
950
+ debug/
951
+ target/
952
+
953
+ # Node
954
+ logs
955
+ pids
956
+ lib-cov
957
+ coverage
958
+ bower_components
959
+ build/Release
960
+ node_modules/
961
+ jspm_packages/
962
+ web_modules/
963
+ out
964
+ dist
965
+
966
+ # PureScript
967
+ bower_components
968
+ node_modules
969
+ output
970
+
971
+ # JBoss
972
+ jboss/server/all/tmp/**/*
973
+ jboss/server/all/data/**/*
974
+ jboss/server/all/work/**/*
975
+ jboss/server/default/tmp/**/*
976
+ jboss/server/default/data/**/*
977
+ jboss/server/default/work/**/*
978
+ jboss/server/minimal/tmp/**/*
979
+ jboss/server/minimal/data/**/*
980
+ jboss/server/minimal/work/**/*
981
+
982
+ # Grails
983
+ /web-app/WEB-INF/classes
984
+ /test/reports
985
+ /logs
986
+ /plugins
987
+ /web-app/plugins
988
+ /target
989
+
990
+ # C
991
+ *.dSYM/
992
+
993
+ # ZendFramework
994
+ vendor/
995
+ data/logs/
996
+ data/cache/
997
+ data/sessions/
998
+ data/tmp/
999
+ temp/
1000
+ data/DoctrineORMModule/Proxy/
1001
+ data/DoctrineORMModule/cache/
1002
+ demos/
1003
+ extras/documentation
1004
+
1005
+ # PlayFramework
1006
+ bin/
1007
+ /db
1008
+ /lib/
1009
+ /logs/
1010
+ /modules
1011
+ /project/project
1012
+ /project/target
1013
+ /target
1014
+ tmp/
1015
+ test-result
1016
+ /dist/
1017
+
1018
+ # SugarCRM
1019
+ /cache/*
1020
+ /custom/history/
1021
+ /custom/modulebuilder/
1022
+ /custom/working/
1023
+ /custom/modules/*/Ext/
1024
+ /custom/application/Ext/
1025
+ /upload/*
1026
+ /upload_backup/
1027
+
1028
+ # ExpressionEngine
1029
+ images/avatars/
1030
+ images/captchas/
1031
+ images/smileys/
1032
+ images/member_photos/
1033
+ images/signature_attachments/
1034
+ images/pm_attachments/
1035
+ sized/
1036
+ thumbs/
1037
+ _thumbs/
1038
+ */expressionengine/cache/*
1039
+
1040
+ # KiCad
1041
+ *~
1042
+ _autosave-*
1043
+ fp-info-cache
1044
+
1045
+ # Plone
1046
+ bin/
1047
+ build/
1048
+ develop-eggs/
1049
+ downloads/
1050
+ eggs/
1051
+ fake-eggs/
1052
+ parts/
1053
+ dist/
1054
+ var/
1055
+
1056
+ # D
1057
+ docs/
1058
+
1059
+ # CFWheels
1060
+ plugins/**/*
1061
+ files
1062
+ db/sql
1063
+ javascripts/bundles
1064
+ stylesheets/bundles
1065
+
1066
+ # Yeoman
1067
+ node_modules/
1068
+ bower_components/
1069
+ build/
1070
+ dist/
1071
+
1072
+ # Nanoc
1073
+ output/
1074
+ tmp/nanoc/
1075
+
1076
+ # Erlang
1077
+ rel/example_project
1078
+ deps
1079
+ _build/
1080
+ _checkouts/
1081
+
1082
+ # VisualStudio
1083
+ [Dd]ebug/
1084
+ [Dd]ebugPublic/
1085
+ [Rr]elease/
1086
+ [Rr]eleases/
1087
+ x64/
1088
+ x86/
1089
+ [Ww][Ii][Nn]32/
1090
+ [Aa][Rr][Mm]/
1091
+ [Aa][Rr][Mm]64/
1092
+ bld/
1093
+ [Bb]in/
1094
+ [Oo]bj/
1095
+ [Ll]og/
1096
+ [Ll]ogs/
1097
+ Generated\ Files/
1098
+ [Tt]est[Rr]esult*/
1099
+ [Dd]ebugPS/
1100
+ [Rr]eleasePS/
1101
+ BenchmarkDotNet.Artifacts/
1102
+ artifacts/
1103
+ _Chutzpah*
1104
+ ipch/
1105
+ $tf/
1106
+ _ReSharper*/
1107
+ _TeamCity*
1108
+ _NCrunch_*
1109
+ nCrunchTemp_*
1110
+ AutoTest.Net/
1111
+ [Ee]xpress/
1112
+ DocProject/buildhelp/
1113
+ DocProject/Help/Html2
1114
+ DocProject/Help/html
1115
+ publish/
1116
+ PublishScripts/
1117
+ **/[Pp]ackages/*
1118
+ !**/[Pp]ackages/build/
1119
+ csx/
1120
+ ecf/
1121
+ rcf/
1122
+ AppPackages/
1123
+ BundleArtifacts/
1124
+ !?*.[Cc]ache/
1125
+ ClientBin/
1126
+ ~$*
1127
+ *~
1128
+ Generated_Code/
1129
+ _UpgradeReport_Files/
1130
+ Backup*/
1131
+ ServiceFabricBackup/
1132
+ FakesAssemblies/
1133
+ node_modules/
1134
+ **/*.HTMLClient/GeneratedArtifacts
1135
+ **/*.DesktopClient/GeneratedArtifacts
1136
+ **/*.Server/GeneratedArtifacts
1137
+ _Pvt_Extensions
1138
+ paket-files/
1139
+ __pycache__/
1140
+ OpenCover/
1141
+ ASALocalRun/
1142
+ healthchecksdb
1143
+ MigrationBackup/
1144
+
1145
+ # Perl
1146
+ !Build/
1147
+ cover_db/
1148
+ _build/
1149
+ Build
1150
+ inc/
1151
+ /blib/
1152
+ /_eumm/
1153
+ /Makefile
1154
+ /pm_to_blib
1155
+
1156
+ # OCaml
1157
+ _build/
1158
+ _opam/
1159
+
1160
+ # Agda
1161
+ MAlonzo/**
1162
+
1163
+ # Clojure
1164
+ /lib/
1165
+ /classes/
1166
+ /target/
1167
+ /checkouts/
1168
+
1169
+ # OpenCart
1170
+ download/
1171
+ image/data/
1172
+ image/cache/
1173
+ system/cache/
1174
+ system/logs/
1175
+ system/storage/
1176
+ vqmod/logs/*
1177
+ vqmod/vqcache/*
1178
+
1179
+ # Kotlin
1180
+ hs_err_pid*
1181
+
1182
+ # Julia
1183
+ deps/downloads/
1184
+ deps/usr/
1185
+ docs/build/
1186
+ docs/site/
1187
+
1188
+ # Opa
1189
+ _build
1190
+ _tracks
1191
+ opa-debug-js
1192
+
1193
+ # Windows
1194
+ $RECYCLE.BIN/
1195
+
1196
+ # MonoDevelop
1197
+ test-results/
1198
+
1199
+ # JDeveloper
1200
+ temp/
1201
+ classes/
1202
+ deploy/
1203
+ javadoc/
1204
+
1205
+ # CodeKit
1206
+ /min
1207
+
1208
+ # VirtualEnv
1209
+ [Bb]in
1210
+ [Ii]nclude
1211
+ [Ll]ib
1212
+ [Ll]ib64
1213
+ [Ll]ocal
1214
+ [Ss]cripts
1215
+
1216
+ # Tags
1217
+ TAGS
1218
+ !TAGS/
1219
+ tags
1220
+ !tags/
1221
+ GTAGS
1222
+ GRTAGS
1223
+ GPATH
1224
+ GSYMS
1225
+
1226
+ # Virtuoso
1227
+ lvsRunDir/*
1228
+ drcRunDir/*
1229
+
1230
+ # PSoCCreator
1231
+ Debug/
1232
+ Release/
1233
+ Export/
1234
+ */codegentemp
1235
+ */Generated_Source
1236
+
1237
+ # Calabash
1238
+ rerun/
1239
+ reports/
1240
+ screenshots/
1241
+ test-servers/
1242
+ vendor
1243
+
1244
+ # TextMate
1245
+ tmtags
1246
+
1247
+ # Lazarus
1248
+ backup/
1249
+ lib/
1250
+ *.app/
1251
+
1252
+ # macOS
1253
+ Icon
1254
+
1255
+ Network Trash Folder
1256
+ Temporary Items
1257
+
1258
+ # EiffelStudio
1259
+ EIFGENs
1260
+
1261
+ # MATLAB
1262
+ helpsearch*/
1263
+ slprj/
1264
+ sccprj/
1265
+ codegen/
1266
+ octave-workspace
1267
+
1268
+ # FlexBuilder
1269
+ bin/
1270
+ bin-debug/
1271
+ bin-release/
1272
+
1273
+ # Eclipse
1274
+ bin/
1275
+ tmp/
1276
+
1277
+ # Vim
1278
+ *~
1279
+ tags
1280
+
1281
+ # SynopsysVCS
1282
+ simv
1283
+ simv.daidir/
1284
+ simv.db.dir/
1285
+ simv.vdb/
1286
+ urgReport/
1287
+ DVEfiles/
1288
+
1289
+ # Emacs
1290
+ *~
1291
+ \#*\#
1292
+ auto-save-list
1293
+ tramp
1294
+ *_archive
1295
+ /eshell/history
1296
+ /eshell/lastdir
1297
+ /elpa/
1298
+ /auto/
1299
+ dist/
1300
+ /server/
1301
+
1302
+ # Momentics
1303
+ x86/
1304
+ arm/
1305
+ arm-p/
1306
+
1307
+ # Linux
1308
+ *~
1309
+
1310
+ # SublimeText
1311
+ Package Control.cache/
1312
+ Package Control.ca-certs/
1313
+
1314
+ # CVS
1315
+ /CVS/*
1316
+ **/CVS/*
1317
+
1318
+ # Dreamweaver
1319
+ _notes
1320
+ _compareTemp
1321
+ configs/
1322
+
1323
+ # Xcode
1324
+ xcuserdata/
1325
+ build/
1326
+ DerivedData/
1327
+
1328
+ # WebMethods
1329
+ **/IntegrationServer/datastore/
1330
+ **/IntegrationServer/db/
1331
+ **/IntegrationServer/DocumentStore/
1332
+ **/IntegrationServer/lib/
1333
+ **/IntegrationServer/logs/
1334
+ **/IntegrationServer/replicate/
1335
+ **/IntegrationServer/sdk/
1336
+ **/IntegrationServer/support/
1337
+ **/IntegrationServer/update/
1338
+ **/IntegrationServer/userFtpRoot/
1339
+ **/IntegrationServer/web/
1340
+ **/IntegrationServer/WmRepository4/
1341
+ **/IntegrationServer/XAStore/
1342
+ **/IntegrationServer/packages/Wm*/
1343
+
1344
+ # ModelSim
1345
+ [_@]*
1346
+ wlf*
1347
+ cov*/
1348
+ transcript*
1349
+
1350
+ # NetBeans
1351
+ **/nbproject/private/
1352
+ build/
1353
+ nbbuild/
1354
+ dist/
1355
+ nbdist/
1356
+
1357
+ # JetBrains
1358
+ cmake-build-*/
1359
+ out/
1360
+
1361
+ # Octave
1362
+ helpsearch*/
1363
+ slprj/
1364
+ sccprj/
1365
+ codegen/
1366
+ octave-workspace
1367
+
1368
+ # SBT
1369
+ dist/*
1370
+ target/
1371
+ lib_managed/
1372
+ project/boot/
1373
+ project/plugins/project/
1374
+
1375
+ # XilinxISE
1376
+ iseconfig/
1377
+ xlnx_auto_0_xdb/
1378
+ xst/
1379
+ _ngo/
1380
+ _xmsgs/
1381
+
1382
+ # Smalltalk
1383
+ /package-cache
1384
+ /play-cache
1385
+ /play-stash
1386
+ /github-cache
1387
+
1388
+ # Magento
1389
+ /media/*
1390
+ !/media/customer
1391
+ /media/customer/*
1392
+ !/media/dhl
1393
+ /media/dhl/*
1394
+ !/media/downloadable
1395
+ /media/downloadable/*
1396
+ !/media/xmlconnect
1397
+ /media/xmlconnect/*
1398
+ !/media/xmlconnect/custom
1399
+ /media/xmlconnect/custom/*
1400
+ !/media/xmlconnect/original
1401
+ /media/xmlconnect/original/*
1402
+ !/media/xmlconnect/system
1403
+ /media/xmlconnect/system/*
1404
+ /var/*
1405
+ !/var/package
1406
+ /var/package/*
1407
+
1408
+ # TurboGears2
1409
+ data/*
1410
+ dist
1411
+ build
1412
+
1413
+ # ChefCookbook
1414
+ /cookbooks
1415
+ bin/*
1416
+
1417
+ # TeX
1418
+ latex.out/
1419
+ *-gnuplottex-*
1420
+ *-tikzDictionary
1421
+ _minted*
1422
+ sympy-plots-for-*.tex/
1423
+ pythontex-files-*/
1424
+ TSWLatexianTemp*
1425
+ *~[0-9]*
1426
+
1427
+ # Rails
1428
+ /public/system
1429
+ /coverage/
1430
+ /spec/tmp
1431
+ /log/*
1432
+ /tmp/*
1433
+ /vendor/bundle
1434
+ /vendor/assets/bower_components
1435
+ node_modules/
1436
+ /public/packs
1437
+ /public/packs-test
1438
+ /public/assets
1439
+ /storage/*
1440
+ /public/uploads
1441
+
1442
+ # Dart
1443
+ build/
1444
+ doc/api/
1445
+
1446
+ # Ruby
1447
+ /coverage/
1448
+ /InstalledFiles
1449
+ /pkg/
1450
+ /spec/reports/
1451
+ /test/tmp/
1452
+ /test/version_tmp/
1453
+ /tmp/
1454
+ build/
1455
+ build-iPhoneOS/
1456
+ build-iPhoneSimulator/
1457
+ /_yardoc/
1458
+ /doc/
1459
+ /rdoc/
1460
+ /vendor/bundle
1461
+ /lib/bundler/man/
1462
+
1463
+ # Textpattern
1464
+ rpc/
1465
+ sites/site*/admin/
1466
+ sites/site*/private/
1467
+ sites/site*/public/admin/
1468
+ sites/site*/public/setup/
1469
+ sites/site*/public/theme/
1470
+ textpattern/
1471
+
1472
+ # Autotools
1473
+ /ar-lib
1474
+ /mdate-sh
1475
+ /py-compile
1476
+ /test-driver
1477
+ /ylwrap
1478
+ /compile
1479
+ /configure
1480
+ /depcomp
1481
+ /install-sh
1482
+ /missing
1483
+ /stamp-h1
1484
+ Makefile
1485
+
1486
+ # Qooxdoo
1487
+ cache
1488
+ cache-downloads
1489
+ inspector
1490
+ api
1491
+
1492
+ # Maven
1493
+ target/
1494
+
1495
+ # Waf
1496
+ waf-*-*/
1497
+ waf3-*-*/
1498
+
1499
+ # Qt
1500
+ Makefile*
1501
+ *build-*
1502
+
1503
+ # ForceDotCom
1504
+ Referenced Packages
1505
+
1506
+ # SeamGen
1507
+ /bootstrap/data
1508
+ /bootstrap/tmp
1509
+ /classes/
1510
+ /dist/
1511
+ /exploded-archives/
1512
+ /test-build/
1513
+ /test-output/
1514
+ /test-report/
1515
+ /target/
1516
+
1517
+ # RhodesRhomobile
1518
+ rholog-*
1519
+ sim-*
1520
+ bin/libs
1521
+ bin/RhoBundle
1522
+ bin/tmp
1523
+ bin/target
1524
+
1525
+ # Xojo
1526
+ Builds*
1527
+ Debug*/Debug*\ Libs
1528
+
1529
+ # Haskell
1530
+ dist
1531
+ dist-*
1532
+ cabal-dev
1533
+
1534
+ # Elm
1535
+ elm-stuff
1536
+ repl-temp-*
1537
+
1538
+ # AppceleratorTitanium
1539
+ build/
1540
+
1541
+ # CraftCMS
1542
+ /craft/storage/*
1543
+ !/craft/storage/rebrand
1544
+
1545
+ # Gradle
1546
+ **/build/
1547
+
1548
+ # Elisp
1549
+ *~