Mercurial > public > finance-parser
comparison .hgignore @ 16:b396a3341f6f default tip
Move to mercurial
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Tue, 03 Jun 2025 14:32:46 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
15:0a5a4cbaa6d6 | 16:b396a3341f6f |
---|---|
1 syntax: glob | |
2 # Created by https://www.toptal.com/developers/gitignore/api/osx,linux,python,windows,pycharm,visualstudiocode,sam | |
3 # Edit at https://www.toptal.com/developers/gitignore?templates=osx,linux,python,windows,pycharm,visualstudiocode,sam | |
4 | |
5 ### Linux ### | |
6 *~ | |
7 | |
8 # temporary files which can be created if a process still has a handle open of a deleted file | |
9 .fuse_hidden* | |
10 | |
11 # KDE directory preferences | |
12 .directory | |
13 | |
14 # Linux trash folder which might appear on any partition or disk | |
15 .Trash-* | |
16 | |
17 # .nfs files are created when an open file is removed but is still being accessed | |
18 .nfs* | |
19 | |
20 ### OSX ### | |
21 # General | |
22 .DS_Store | |
23 .AppleDouble | |
24 .LSOverride | |
25 | |
26 # Icon must end with two \r | |
27 Icon | |
28 | |
29 | |
30 # Thumbnails | |
31 ._* | |
32 | |
33 # Files that might appear in the root of a volume | |
34 .DocumentRevisions-V100 | |
35 .fseventsd | |
36 .Spotlight-V100 | |
37 .TemporaryItems | |
38 .Trashes | |
39 .VolumeIcon.icns | |
40 .com.apple.timemachine.donotpresent | |
41 | |
42 # Directories potentially created on remote AFP share | |
43 .AppleDB | |
44 .AppleDesktop | |
45 Network Trash Folder | |
46 Temporary Items | |
47 .apdisk | |
48 | |
49 ### PyCharm ### | |
50 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider | |
51 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | |
52 | |
53 # User-specific stuff | |
54 .idea/**/workspace.xml | |
55 .idea/**/tasks.xml | |
56 .idea/**/usage.statistics.xml | |
57 .idea/**/dictionaries | |
58 .idea/**/shelf | |
59 | |
60 # Generated files | |
61 .idea/**/contentModel.xml | |
62 | |
63 # Sensitive or high-churn files | |
64 .idea/**/dataSources/ | |
65 .idea/**/dataSources.ids | |
66 .idea/**/dataSources.local.xml | |
67 .idea/**/sqlDataSources.xml | |
68 .idea/**/dynamic.xml | |
69 .idea/**/uiDesigner.xml | |
70 .idea/**/dbnavigator.xml | |
71 | |
72 # Gradle | |
73 .idea/**/gradle.xml | |
74 .idea/**/libraries | |
75 | |
76 # Gradle and Maven with auto-import | |
77 # When using Gradle or Maven with auto-import, you should exclude module files, | |
78 # since they will be recreated, and may cause churn. Uncomment if using | |
79 # auto-import. | |
80 # .idea/artifacts | |
81 # .idea/compiler.xml | |
82 # .idea/jarRepositories.xml | |
83 # .idea/modules.xml | |
84 # .idea/*.iml | |
85 # .idea/modules | |
86 # *.iml | |
87 # *.ipr | |
88 | |
89 # CMake | |
90 cmake-build-*/ | |
91 | |
92 # Mongo Explorer plugin | |
93 .idea/**/mongoSettings.xml | |
94 | |
95 # File-based project format | |
96 *.iws | |
97 | |
98 # IntelliJ | |
99 out/ | |
100 | |
101 # mpeltonen/sbt-idea plugin | |
102 .idea_modules/ | |
103 | |
104 # JIRA plugin | |
105 atlassian-ide-plugin.xml | |
106 | |
107 # Cursive Clojure plugin | |
108 .idea/replstate.xml | |
109 | |
110 # Crashlytics plugin (for Android Studio and IntelliJ) | |
111 com_crashlytics_export_strings.xml | |
112 crashlytics.properties | |
113 crashlytics-build.properties | |
114 fabric.properties | |
115 | |
116 # Editor-based Rest Client | |
117 .idea/httpRequests | |
118 | |
119 # Android studio 3.1+ serialized cache file | |
120 .idea/caches/build_file_checksums.ser | |
121 | |
122 ### PyCharm Patch ### | |
123 # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 | |
124 | |
125 # *.iml | |
126 # modules.xml | |
127 # .idea/misc.xml | |
128 # *.ipr | |
129 | |
130 # Sonarlint plugin | |
131 # https://plugins.jetbrains.com/plugin/7973-sonarlint | |
132 .idea/**/sonarlint/ | |
133 | |
134 # SonarQube Plugin | |
135 # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin | |
136 .idea/**/sonarIssues.xml | |
137 | |
138 # Markdown Navigator plugin | |
139 # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced | |
140 .idea/**/markdown-navigator.xml | |
141 .idea/**/markdown-navigator-enh.xml | |
142 .idea/**/markdown-navigator/ | |
143 | |
144 # Cache file creation bug | |
145 # See https://youtrack.jetbrains.com/issue/JBR-2257 | |
146 .idea/$CACHE_FILE$ | |
147 | |
148 # CodeStream plugin | |
149 # https://plugins.jetbrains.com/plugin/12206-codestream | |
150 .idea/codestream.xml | |
151 | |
152 ### Python ### | |
153 # Byte-compiled / optimized / DLL files | |
154 __pycache__/ | |
155 *.py[cod] | |
156 *$py.class | |
157 | |
158 # C extensions | |
159 *.so | |
160 | |
161 # Distribution / packaging | |
162 .Python | |
163 build/ | |
164 develop-eggs/ | |
165 dist/ | |
166 downloads/ | |
167 eggs/ | |
168 .eggs/ | |
169 parts/ | |
170 sdist/ | |
171 var/ | |
172 wheels/ | |
173 pip-wheel-metadata/ | |
174 share/python-wheels/ | |
175 *.egg-info/ | |
176 .installed.cfg | |
177 *.egg | |
178 MANIFEST | |
179 | |
180 # PyInstaller | |
181 # Usually these files are written by a python script from a template | |
182 # before PyInstaller builds the exe, so as to inject date/other infos into it. | |
183 *.manifest | |
184 *.spec | |
185 | |
186 # Installer logs | |
187 pip-log.txt | |
188 pip-delete-this-directory.txt | |
189 | |
190 # Unit test / coverage reports | |
191 htmlcov/ | |
192 .tox/ | |
193 .nox/ | |
194 .coverage | |
195 .coverage.* | |
196 .cache | |
197 nosetests.xml | |
198 coverage.xml | |
199 *.cover | |
200 *.py,cover | |
201 .hypothesis/ | |
202 .pytest_cache/ | |
203 pytestdebug.log | |
204 | |
205 # Translations | |
206 *.mo | |
207 *.pot | |
208 | |
209 # Django stuff: | |
210 *.log | |
211 local_settings.py | |
212 db.sqlite3 | |
213 db.sqlite3-journal | |
214 | |
215 # Flask stuff: | |
216 instance/ | |
217 .webassets-cache | |
218 | |
219 # Scrapy stuff: | |
220 .scrapy | |
221 | |
222 # Sphinx documentation | |
223 docs/_build/ | |
224 doc/_build/ | |
225 | |
226 # PyBuilder | |
227 target/ | |
228 | |
229 # Jupyter Notebook | |
230 .ipynb_checkpoints | |
231 | |
232 # IPython | |
233 profile_default/ | |
234 ipython_config.py | |
235 | |
236 # pyenv | |
237 .python-version | |
238 | |
239 # pipenv | |
240 # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. | |
241 # However, in case of collaboration, if having platform-specific dependencies or dependencies | |
242 # having no cross-platform support, pipenv may install dependencies that don't work, or not | |
243 # install all needed dependencies. | |
244 #Pipfile.lock | |
245 | |
246 # poetry | |
247 #poetry.lock | |
248 | |
249 # PEP 582; used by e.g. github.com/David-OConnor/pyflow | |
250 __pypackages__/ | |
251 | |
252 # Celery stuff | |
253 celerybeat-schedule | |
254 celerybeat.pid | |
255 | |
256 # SageMath parsed files | |
257 *.sage.py | |
258 | |
259 # Environments | |
260 # .env | |
261 .env/ | |
262 .venv/ | |
263 env/ | |
264 venv/ | |
265 ENV/ | |
266 env.bak/ | |
267 venv.bak/ | |
268 pythonenv* | |
269 | |
270 # Spyder project settings | |
271 .spyderproject | |
272 .spyproject | |
273 | |
274 # Rope project settings | |
275 .ropeproject | |
276 | |
277 # mkdocs documentation | |
278 /site | |
279 | |
280 # mypy | |
281 .mypy_cache/ | |
282 .dmypy.json | |
283 dmypy.json | |
284 | |
285 # Pyre type checker | |
286 .pyre/ | |
287 | |
288 # pytype static type analyzer | |
289 .pytype/ | |
290 | |
291 # operating system-related files | |
292 # file properties cache/storage on macOS | |
293 *.DS_Store | |
294 # thumbnail cache on Windows | |
295 Thumbs.db | |
296 | |
297 # profiling data | |
298 .prof | |
299 | |
300 | |
301 ### SAM ### | |
302 # Ignore build directories for the AWS Serverless Application Model (SAM) | |
303 # Info: https://aws.amazon.com/serverless/sam/ | |
304 # Docs: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-reference.html | |
305 | |
306 **/.aws-sam | |
307 | |
308 ### VisualStudioCode ### | |
309 .vscode/* | |
310 !.vscode/settings.json | |
311 !.vscode/tasks.json | |
312 !.vscode/launch.json | |
313 !.vscode/extensions.json | |
314 *.code-workspace | |
315 | |
316 ### VisualStudioCode Patch ### | |
317 # Ignore all local history of files | |
318 .history | |
319 .ionide | |
320 | |
321 ### Windows ### | |
322 # Windows thumbnail cache files | |
323 Thumbs.db:encryptable | |
324 ehthumbs.db | |
325 ehthumbs_vista.db | |
326 | |
327 # Dump file | |
328 *.stackdump | |
329 | |
330 # Folder config file | |
331 [Dd]esktop.ini | |
332 | |
333 # Recycle Bin used on file shares | |
334 $RECYCLE.BIN/ | |
335 | |
336 # Windows Installer files | |
337 *.cab | |
338 *.msi | |
339 *.msix | |
340 *.msm | |
341 *.msp | |
342 | |
343 # Windows shortcuts | |
344 *.lnk | |
345 | |
346 # End of https://www.toptal.com/developers/gitignore/api/osx,linux,python,windows,pycharm,visualstudiocode,sam |