Younesse Kaddar commited on
Commit
c8d1710
1 Parent(s): df93a55
Files changed (1) hide show
  1. .gitignore +203 -3
.gitignore CHANGED
@@ -1,3 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Byte-compiled / optimized / DLL files
2
  __pycache__/
3
  *.py[cod]
@@ -42,7 +216,6 @@ htmlcov/
42
  .nox/
43
  .coverage
44
  .coverage.*
45
- .cache
46
  nosetests.xml
47
  coverage.xml
48
  *.cover
@@ -56,7 +229,6 @@ cover/
56
  *.pot
57
 
58
  # Django stuff:
59
- *.log
60
  local_settings.py
61
  db.sqlite3
62
  db.sqlite3-journal
@@ -120,7 +292,6 @@ celerybeat.pid
120
  *.sage.py
121
 
122
  # Environments
123
- .env
124
  .venv
125
  env/
126
  venv/
@@ -158,3 +329,32 @@ cython_debug/
158
  # and can be added to the global gitignore or merged into this file. For a more nuclear
159
  # option (not recommended) you can uncomment the following to ignore the entire idea folder.
160
  #.idea/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ### macOS ###
2
+ # General
3
+ .DS_Store
4
+ .AppleDouble
5
+ .LSOverride
6
+
7
+ # Icon must end with two \r
8
+ Icon
9
+
10
+
11
+ # Thumbnails
12
+ ._*
13
+
14
+ # Files that might appear in the root of a volume
15
+ .DocumentRevisions-V100
16
+ .fseventsd
17
+ .Spotlight-V100
18
+ .TemporaryItems
19
+ .Trashes
20
+ .VolumeIcon.icns
21
+ .com.apple.timemachine.donotpresent
22
+
23
+ # Directories potentially created on remote AFP share
24
+ .AppleDB
25
+ .AppleDesktop
26
+ Network Trash Folder
27
+ Temporary Items
28
+ .apdisk
29
+
30
+ ### macOS Patch ###
31
+ # iCloud generated files
32
+ *.icloud
33
+
34
+ ### Node ###
35
+ # Logs
36
+ logs
37
+ *.log
38
+ npm-debug.log*
39
+ yarn-debug.log*
40
+ yarn-error.log*
41
+ lerna-debug.log*
42
+ .pnpm-debug.log*
43
+
44
+ # Diagnostic reports (https://nodejs.org/api/report.html)
45
+ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
46
+
47
+ # Runtime data
48
+ pids
49
+ *.pid
50
+ *.seed
51
+ *.pid.lock
52
+
53
+ # Directory for instrumented libs generated by jscoverage/JSCover
54
+ lib-cov
55
+
56
+ # Coverage directory used by tools like istanbul
57
+ coverage
58
+ *.lcov
59
+
60
+ # nyc test coverage
61
+ .nyc_output
62
+
63
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
64
+ .grunt
65
+
66
+ # Bower dependency directory (https://bower.io/)
67
+ bower_components
68
+
69
+ # node-waf configuration
70
+ .lock-wscript
71
+
72
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
73
+ build/Release
74
+
75
+ # Dependency directories
76
+ node_modules/
77
+ jspm_packages/
78
+
79
+ # Snowpack dependency directory (https://snowpack.dev/)
80
+ web_modules/
81
+
82
+ # TypeScript cache
83
+ *.tsbuildinfo
84
+
85
+ # Optional npm cache directory
86
+ .npm
87
+
88
+ # Optional eslint cache
89
+ .eslintcache
90
+
91
+ # Optional stylelint cache
92
+ .stylelintcache
93
+
94
+ # Microbundle cache
95
+ .rpt2_cache/
96
+ .rts2_cache_cjs/
97
+ .rts2_cache_es/
98
+ .rts2_cache_umd/
99
+
100
+ # Optional REPL history
101
+ .node_repl_history
102
+
103
+ # Output of 'npm pack'
104
+ *.tgz
105
+
106
+ # Yarn Integrity file
107
+ .yarn-integrity
108
+
109
+ # dotenv environment variable files
110
+ .env
111
+ .env.development.local
112
+ .env.test.local
113
+ .env.production.local
114
+ .env.local
115
+
116
+ # parcel-bundler cache (https://parceljs.org/)
117
+ .cache
118
+ .parcel-cache
119
+
120
+ # Next.js build output
121
+ .next
122
+ out
123
+
124
+ # Nuxt.js build / generate output
125
+ .nuxt
126
+ dist
127
+
128
+ # Gatsby files
129
+ .cache/
130
+ # Comment in the public line in if your project uses Gatsby and not Next.js
131
+ # https://nextjs.org/blog/next-9-1#public-directory-support
132
+ # public
133
+
134
+ # vuepress build output
135
+ .vuepress/dist
136
+
137
+ # vuepress v2.x temp and cache directory
138
+ .temp
139
+
140
+ # Docusaurus cache and generated files
141
+ .docusaurus
142
+
143
+ # Serverless directories
144
+ .serverless/
145
+
146
+ # FuseBox cache
147
+ .fusebox/
148
+
149
+ # DynamoDB Local files
150
+ .dynamodb/
151
+
152
+ # TernJS port file
153
+ .tern-port
154
+
155
+ # Stores VSCode versions used for testing VSCode extensions
156
+ .vscode-test
157
+
158
+ # yarn v2
159
+ .yarn/cache
160
+ .yarn/unplugged
161
+ .yarn/build-state.yml
162
+ .yarn/install-state.gz
163
+ .pnp.*
164
+
165
+ ### Node Patch ###
166
+ # Serverless Webpack directories
167
+ .webpack/
168
+
169
+ # Optional stylelint cache
170
+
171
+ # SvelteKit build / generate output
172
+ .svelte-kit
173
+
174
+ ### Python ###
175
  # Byte-compiled / optimized / DLL files
176
  __pycache__/
177
  *.py[cod]
 
216
  .nox/
217
  .coverage
218
  .coverage.*
 
219
  nosetests.xml
220
  coverage.xml
221
  *.cover
 
229
  *.pot
230
 
231
  # Django stuff:
 
232
  local_settings.py
233
  db.sqlite3
234
  db.sqlite3-journal
 
292
  *.sage.py
293
 
294
  # Environments
 
295
  .venv
296
  env/
297
  venv/
 
329
  # and can be added to the global gitignore or merged into this file. For a more nuclear
330
  # option (not recommended) you can uncomment the following to ignore the entire idea folder.
331
  #.idea/
332
+
333
+ ### Python Patch ###
334
+ # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
335
+ poetry.toml
336
+
337
+ # ruff
338
+ .ruff_cache/
339
+
340
+ # LSP config files
341
+ pyrightconfig.json
342
+
343
+ ### VisualStudioCode ###
344
+ .vscode/*
345
+ !.vscode/settings.json
346
+ !.vscode/tasks.json
347
+ !.vscode/launch.json
348
+ !.vscode/extensions.json
349
+ !.vscode/*.code-snippets
350
+
351
+ # Local History for Visual Studio Code
352
+ .history/
353
+
354
+ # Built Visual Studio Code Extensions
355
+ *.vsix
356
+
357
+ ### VisualStudioCode Patch ###
358
+ # Ignore all local history of files
359
+ .history
360
+ .ionide