Oleg Shulyakov commited on
Commit
3c74dbc
·
1 Parent(s): 1cbbedd

Git ignore

Browse files
Files changed (2) hide show
  1. .gitignore +203 -7
  2. outputs/.keep +0 -0
.gitignore CHANGED
@@ -1,3 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Byte-compiled / optimized / DLL files
2
  __pycache__/
3
  *.py[cod]
@@ -106,10 +245,8 @@ ipython_config.py
106
  #pdm.lock
107
  # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
  # in version control.
109
- # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110
  .pdm.toml
111
- .pdm-python
112
- .pdm-build/
113
 
114
  # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115
  __pypackages__/
@@ -161,7 +298,66 @@ cython_debug/
161
  # option (not recommended) you can uncomment the following to ignore the entire idea folder.
162
  #.idea/
163
 
164
- /downloads
165
- !/downloads/.keep
166
- /llama.cpp
167
- /outputs
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Created by https://www.toptal.com/developers/gitignore/api/linux,macos,windows,python,jetbrains+all,visualstudiocode
2
+ # Edit at https://www.toptal.com/developers/gitignore?templates=linux,macos,windows,python,jetbrains+all,visualstudiocode
3
+
4
+ ### JetBrains+all ###
5
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
6
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7
+
8
+ # User-specific stuff
9
+ .idea/**/workspace.xml
10
+ .idea/**/tasks.xml
11
+ .idea/**/usage.statistics.xml
12
+ .idea/**/dictionaries
13
+ .idea/**/shelf
14
+
15
+ # AWS User-specific
16
+ .idea/**/aws.xml
17
+
18
+ # Generated files
19
+ .idea/**/contentModel.xml
20
+
21
+ # Sensitive or high-churn files
22
+ .idea/**/dataSources/
23
+ .idea/**/dataSources.ids
24
+ .idea/**/dataSources.local.xml
25
+ .idea/**/sqlDataSources.xml
26
+ .idea/**/dynamic.xml
27
+ .idea/**/uiDesigner.xml
28
+ .idea/**/dbnavigator.xml
29
+
30
+ # Gradle
31
+ .idea/**/gradle.xml
32
+ .idea/**/libraries
33
+
34
+ # Gradle and Maven with auto-import
35
+ # When using Gradle or Maven with auto-import, you should exclude module files,
36
+ # since they will be recreated, and may cause churn. Uncomment if using
37
+ # auto-import.
38
+ # .idea/artifacts
39
+ # .idea/compiler.xml
40
+ # .idea/jarRepositories.xml
41
+ # .idea/modules.xml
42
+ # .idea/*.iml
43
+ # .idea/modules
44
+ # *.iml
45
+ # *.ipr
46
+
47
+ # CMake
48
+ cmake-build-*/
49
+
50
+ # Mongo Explorer plugin
51
+ .idea/**/mongoSettings.xml
52
+
53
+ # File-based project format
54
+ *.iws
55
+
56
+ # IntelliJ
57
+ out/
58
+
59
+ # mpeltonen/sbt-idea plugin
60
+ .idea_modules/
61
+
62
+ # JIRA plugin
63
+ atlassian-ide-plugin.xml
64
+
65
+ # Cursive Clojure plugin
66
+ .idea/replstate.xml
67
+
68
+ # SonarLint plugin
69
+ .idea/sonarlint/
70
+
71
+ # Crashlytics plugin (for Android Studio and IntelliJ)
72
+ com_crashlytics_export_strings.xml
73
+ crashlytics.properties
74
+ crashlytics-build.properties
75
+ fabric.properties
76
+
77
+ # Editor-based Rest Client
78
+ .idea/httpRequests
79
+
80
+ # Android studio 3.1+ serialized cache file
81
+ .idea/caches/build_file_checksums.ser
82
+
83
+ ### JetBrains+all Patch ###
84
+ # Ignore everything but code style settings and run configurations
85
+ # that are supposed to be shared within teams.
86
+
87
+ .idea/*
88
+
89
+ !.idea/codeStyles
90
+ !.idea/runConfigurations
91
+
92
+ ### Linux ###
93
+ *~
94
+
95
+ # temporary files which can be created if a process still has a handle open of a deleted file
96
+ .fuse_hidden*
97
+
98
+ # KDE directory preferences
99
+ .directory
100
+
101
+ # Linux trash folder which might appear on any partition or disk
102
+ .Trash-*
103
+
104
+ # .nfs files are created when an open file is removed but is still being accessed
105
+ .nfs*
106
+
107
+ ### macOS ###
108
+ # General
109
+ .DS_Store
110
+ .AppleDouble
111
+ .LSOverride
112
+
113
+ # Icon must end with two \r
114
+ Icon
115
+
116
+ # Thumbnails
117
+ ._*
118
+
119
+ # Files that might appear in the root of a volume
120
+ .DocumentRevisions-V100
121
+ .fseventsd
122
+ .Spotlight-V100
123
+ .TemporaryItems
124
+ .Trashes
125
+ .VolumeIcon.icns
126
+ .com.apple.timemachine.donotpresent
127
+
128
+ # Directories potentially created on remote AFP share
129
+ .AppleDB
130
+ .AppleDesktop
131
+ Network Trash Folder
132
+ Temporary Items
133
+ .apdisk
134
+
135
+ ### macOS Patch ###
136
+ # iCloud generated files
137
+ *.icloud
138
+
139
+ ### Python ###
140
  # Byte-compiled / optimized / DLL files
141
  __pycache__/
142
  *.py[cod]
 
245
  #pdm.lock
246
  # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
247
  # in version control.
248
+ # https://pdm.fming.dev/#use-with-ide
249
  .pdm.toml
 
 
250
 
251
  # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
252
  __pypackages__/
 
298
  # option (not recommended) you can uncomment the following to ignore the entire idea folder.
299
  #.idea/
300
 
301
+ ### Python Patch ###
302
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
303
+ poetry.toml
304
+
305
+ # ruff
306
+ .ruff_cache/
307
+
308
+ # LSP config files
309
+ pyrightconfig.json
310
+
311
+ ### VisualStudioCode ###
312
+ .vscode/*
313
+ !.vscode/settings.json
314
+ !.vscode/tasks.json
315
+ !.vscode/launch.json
316
+ !.vscode/extensions.json
317
+ !.vscode/*.code-snippets
318
+
319
+ # Local History for Visual Studio Code
320
+ .history/
321
+
322
+ # Built Visual Studio Code Extensions
323
+ *.vsix
324
+
325
+ ### VisualStudioCode Patch ###
326
+ # Ignore all local history of files
327
+ .history
328
+ .ionide
329
+
330
+ ### Windows ###
331
+ # Windows thumbnail cache files
332
+ Thumbs.db
333
+ Thumbs.db:encryptable
334
+ ehthumbs.db
335
+ ehthumbs_vista.db
336
+
337
+ # Dump file
338
+ *.stackdump
339
+
340
+ # Folder config file
341
+ [Dd]esktop.ini
342
+
343
+ # Recycle Bin used on file shares
344
+ $RECYCLE.BIN/
345
+
346
+ # Windows Installer files
347
+ *.cab
348
+ *.msi
349
+ *.msix
350
+ *.msm
351
+ *.msp
352
+
353
+ # Windows shortcuts
354
+ *.lnk
355
+
356
+ # End of https://www.toptal.com/developers/gitignore/api/linux,macos,windows,python,jetbrains+all,visualstudiocode
357
+
358
+ # Working folders
359
+ downloads/*
360
+ outputs/*
361
+ llama.cpp/
362
+
363
+ !*/.keep
outputs/.keep ADDED
File without changes