microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
.gitignore
461lines · modecode
| 1 | # -------------------- |
| 2 | # Execution artifact |
| 3 | # -------------------- |
| 4 | # Rules SqlLite db |
| 5 | *.db |
| 6 | *.db-shm |
| 7 | *.db-wal |
| 8 | |
| 9 | # -------------------- |
| 10 | # VS Code |
| 11 | # -------------------- |
| 12 | |
| 13 | # temp directories |
| 14 | build/ |
| 15 | dist/ |
| 16 | out/ |
| 17 | node_modules/ |
| 18 | dist-pub/ |
| 19 | .env |
| 20 | *.map |
| 21 | *.out.txt |
| 22 | *.tsbuildinfo |
| 23 | .build.cache/ |
| 24 | .extension-build-hash |
| 25 | .tsc-cache-*.json |
| 26 | .frontend-build-cache.json |
| 27 | |
| 28 | # Local development and debugging |
| 29 | .scratch/ |
| 30 | .context/ |
| 31 | .vscode |
| 32 | **/.vscode/* |
| 33 | **/tsconfig.debug.json |
| 34 | **/build.bat |
| 35 | *.code-workspace |
| 36 | **/localScripts/* |
| 37 | |
| 38 | # -------------------- |
| 39 | # Visual Studio |
| 40 | # -------------------- |
| 41 | |
| 42 | ## Ignore Visual Studio temporary files, build results, and |
| 43 | ## files generated by popular Visual Studio add-ons. |
| 44 | ## |
| 45 | ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore |
| 46 | |
| 47 | # User-specific files |
| 48 | *.rsuser |
| 49 | *.suo |
| 50 | *.user |
| 51 | *.userosscache |
| 52 | *.sln.docstates |
| 53 | |
| 54 | # Optional local config overrides |
| 55 | appSettings.local.json |
| 56 | appSettings.Development.json |
| 57 | config.Development.json |
| 58 | .env |
| 59 | launchSettings.json |
| 60 | |
| 61 | # User-specific files (MonoDevelop/Xamarin Studio) |
| 62 | *.userprefs |
| 63 | |
| 64 | # Mono auto generated files |
| 65 | mono_crash.* |
| 66 | |
| 67 | # Build results |
| 68 | [Dd]ebug/ |
| 69 | [Dd]ebugPublic/ |
| 70 | [Rr]elease/ |
| 71 | [Rr]eleases/ |
| 72 | x64/ |
| 73 | x86/ |
| 74 | [Ww][Ii][Nn]32/ |
| 75 | [Aa][Rr][Mm]/ |
| 76 | [Aa][Rr][Mm]64/ |
| 77 | bld/ |
| 78 | [Bb]in/ |
| 79 | [Oo]bj/ |
| 80 | [Ll]og/ |
| 81 | [Ll]ogs/ |
| 82 | |
| 83 | # Visual Studio 2015/2017 cache/options directory |
| 84 | .vs/ |
| 85 | # Uncomment if you have tasks that create the project's static files in wwwroot |
| 86 | #wwwroot/ |
| 87 | |
| 88 | # Visual Studio 2017 auto generated files |
| 89 | Generated\ Files/ |
| 90 | |
| 91 | # MSTest test Results |
| 92 | [Tt]est[Rr]esult*/ |
| 93 | [Bb]uild[Ll]og.* |
| 94 | |
| 95 | # NUnit |
| 96 | *.VisualState.xml |
| 97 | TestResult.xml |
| 98 | nunit-*.xml |
| 99 | |
| 100 | # Build Results of an ATL Project |
| 101 | [Dd]ebugPS/ |
| 102 | [Rr]eleasePS/ |
| 103 | dlldata.c |
| 104 | |
| 105 | # Benchmark Results |
| 106 | BenchmarkDotNet.Artifacts/ |
| 107 | |
| 108 | # .NET Core |
| 109 | project.lock.json |
| 110 | project.fragment.lock.json |
| 111 | artifacts/ |
| 112 | |
| 113 | # ASP.NET Scaffolding |
| 114 | ScaffoldingReadMe.txt |
| 115 | |
| 116 | # StyleCop |
| 117 | StyleCopReport.xml |
| 118 | |
| 119 | # Files built by Visual Studio |
| 120 | *_i.c |
| 121 | *_p.c |
| 122 | *_h.h |
| 123 | *.ilk |
| 124 | *.meta |
| 125 | *.obj |
| 126 | *.iobj |
| 127 | *.pch |
| 128 | *.pdb |
| 129 | *.ipdb |
| 130 | *.pgc |
| 131 | *.pgd |
| 132 | *.rsp |
| 133 | *.sbr |
| 134 | *.tlb |
| 135 | *.tli |
| 136 | *.tlh |
| 137 | *.tmp |
| 138 | *.tmp_proj |
| 139 | *_wpftmp.csproj |
| 140 | *.log |
| 141 | *.tlog |
| 142 | *.vspscc |
| 143 | *.vssscc |
| 144 | .builds |
| 145 | *.pidb |
| 146 | *.svclog |
| 147 | *.scc |
| 148 | |
| 149 | # Chutzpah Test files |
| 150 | _Chutzpah* |
| 151 | |
| 152 | # Visual C++ cache files |
| 153 | ipch/ |
| 154 | *.aps |
| 155 | *.ncb |
| 156 | *.opendb |
| 157 | *.opensdf |
| 158 | *.sdf |
| 159 | *.cachefile |
| 160 | *.VC.db |
| 161 | *.VC.VC.opendb |
| 162 | |
| 163 | # Visual Studio profiler |
| 164 | *.psess |
| 165 | *.vsp |
| 166 | *.vspx |
| 167 | *.sap |
| 168 | |
| 169 | # Visual Studio Trace Files |
| 170 | *.e2e |
| 171 | |
| 172 | # TFS 2012 Local Workspace |
| 173 | $tf/ |
| 174 | |
| 175 | # Guidance Automation Toolkit |
| 176 | *.gpState |
| 177 | |
| 178 | # ReSharper is a .NET coding add-in |
| 179 | _ReSharper*/ |
| 180 | *.[Rr]e[Ss]harper |
| 181 | *.DotSettings.user |
| 182 | |
| 183 | # TeamCity is a build add-in |
| 184 | _TeamCity* |
| 185 | |
| 186 | # DotCover is a Code Coverage Tool |
| 187 | *.dotCover |
| 188 | |
| 189 | # AxoCover is a Code Coverage Tool |
| 190 | .axoCover/* |
| 191 | !.axoCover/settings.json |
| 192 | |
| 193 | # Coverlet is a free, cross platform Code Coverage Tool |
| 194 | coverage*.json |
| 195 | coverage*.xml |
| 196 | coverage*.info |
| 197 | |
| 198 | # Visual Studio code coverage results |
| 199 | *.coverage |
| 200 | *.coveragexml |
| 201 | |
| 202 | # NCrunch |
| 203 | _NCrunch_* |
| 204 | .*crunch*.local.xml |
| 205 | nCrunchTemp_* |
| 206 | |
| 207 | # MightyMoose |
| 208 | *.mm.* |
| 209 | AutoTest.Net/ |
| 210 | |
| 211 | # Web workbench (sass) |
| 212 | .sass-cache/ |
| 213 | |
| 214 | # Installshield output folder |
| 215 | [Ee]xpress/ |
| 216 | |
| 217 | # DocProject is a documentation generator add-in |
| 218 | DocProject/buildhelp/ |
| 219 | DocProject/Help/*.HxT |
| 220 | DocProject/Help/*.HxC |
| 221 | DocProject/Help/*.hhc |
| 222 | DocProject/Help/*.hhk |
| 223 | DocProject/Help/*.hhp |
| 224 | DocProject/Help/Html2 |
| 225 | DocProject/Help/html |
| 226 | |
| 227 | # Click-Once directory |
| 228 | publish/ |
| 229 | |
| 230 | # Publish Web Output |
| 231 | *.[Pp]ublish.xml |
| 232 | *.azurePubxml |
| 233 | # Note: Comment the next line if you want to checkin your web deploy settings, |
| 234 | # but database connection strings (with potential passwords) will be unencrypted |
| 235 | *.pubxml |
| 236 | *.publishproj |
| 237 | |
| 238 | # Microsoft Azure Web App publish settings. Comment the next line if you want to |
| 239 | # checkin your Azure Web App publish settings, but sensitive information contained |
| 240 | # in these scripts will be unencrypted |
| 241 | PublishScripts/ |
| 242 | |
| 243 | # NuGet Packages |
| 244 | *.nupkg |
| 245 | # NuGet Symbol Packages |
| 246 | *.snupkg |
| 247 | # The packages folder can be ignored because of Package Restore |
| 248 | dotnet/**/[Pp]ackages/* |
| 249 | # except build/, which is used as an MSBuild target. |
| 250 | !**/[Pp]ackages/build/ |
| 251 | # Uncomment if necessary however generally it will be regenerated when needed |
| 252 | #!**/[Pp]ackages/repositories.config |
| 253 | # NuGet v3's project.json files produces more ignorable files |
| 254 | *.nuget.props |
| 255 | *.nuget.targets |
| 256 | |
| 257 | # Microsoft Azure Build Output |
| 258 | csx/ |
| 259 | *.build.csdef |
| 260 | |
| 261 | # Microsoft Azure Emulator |
| 262 | ecf/ |
| 263 | rcf/ |
| 264 | |
| 265 | # Windows Store app package directories and files |
| 266 | AppPackages/ |
| 267 | BundleArtifacts/ |
| 268 | Package.StoreAssociation.xml |
| 269 | _pkginfo.txt |
| 270 | *.appx |
| 271 | *.appxbundle |
| 272 | *.appxupload |
| 273 | |
| 274 | # Visual Studio cache files |
| 275 | # files ending in .cache can be ignored |
| 276 | *.[Cc]ache |
| 277 | # but keep track of directories ending in .cache |
| 278 | !?*.[Cc]ache/ |
| 279 | |
| 280 | # Others |
| 281 | ClientBin/ |
| 282 | ~$* |
| 283 | *~ |
| 284 | *.dbmdl |
| 285 | *.dbproj.schemaview |
| 286 | *.jfm |
| 287 | *.pfx |
| 288 | *.publishsettings |
| 289 | orleans.codegen.cs |
| 290 | |
| 291 | # Including strong name files can present a security risk |
| 292 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) |
| 293 | #*.snk |
| 294 | |
| 295 | # Since there are multiple workflows, uncomment next line to ignore bower_components |
| 296 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) |
| 297 | #bower_components/ |
| 298 | |
| 299 | # RIA/Silverlight projects |
| 300 | Generated_Code/ |
| 301 | |
| 302 | # Backup & report files from converting an old project file |
| 303 | # to a newer Visual Studio version. Backup files are not needed, |
| 304 | # because we have git ;-) |
| 305 | _UpgradeReport_Files/ |
| 306 | Backup*/ |
| 307 | UpgradeLog*.XML |
| 308 | UpgradeLog*.htm |
| 309 | ServiceFabricBackup/ |
| 310 | *.rptproj.bak |
| 311 | |
| 312 | # SQL Server files |
| 313 | *.mdf |
| 314 | *.ldf |
| 315 | *.ndf |
| 316 | |
| 317 | # Business Intelligence projects |
| 318 | *.rdl.data |
| 319 | *.bim.layout |
| 320 | *.bim_*.settings |
| 321 | *.rptproj.rsuser |
| 322 | *- [Bb]ackup.rdl |
| 323 | *- [Bb]ackup ([0-9]).rdl |
| 324 | *- [Bb]ackup ([0-9][0-9]).rdl |
| 325 | |
| 326 | # Microsoft Fakes |
| 327 | FakesAssemblies/ |
| 328 | |
| 329 | # GhostDoc plugin setting file |
| 330 | *.GhostDoc.xml |
| 331 | |
| 332 | # Node.js Tools for Visual Studio |
| 333 | .ntvs_analysis.dat |
| 334 | node_modules/ |
| 335 | |
| 336 | # Visual Studio 6 build log |
| 337 | *.plg |
| 338 | |
| 339 | # Visual Studio 6 workspace options file |
| 340 | *.opt |
| 341 | |
| 342 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) |
| 343 | *.vbw |
| 344 | |
| 345 | # Visual Studio 6 auto-generated project file (contains which files were open etc.) |
| 346 | *.vbp |
| 347 | |
| 348 | # Visual Studio 6 workspace and project file (working project files containing files to include in project) |
| 349 | *.dsw |
| 350 | *.dsp |
| 351 | |
| 352 | # Visual Studio 6 technical files |
| 353 | *.ncb |
| 354 | *.aps |
| 355 | |
| 356 | # Visual Studio LightSwitch build output |
| 357 | **/*.HTMLClient/GeneratedArtifacts |
| 358 | **/*.DesktopClient/GeneratedArtifacts |
| 359 | **/*.DesktopClient/ModelManifest.xml |
| 360 | **/*.Server/GeneratedArtifacts |
| 361 | **/*.Server/ModelManifest.xml |
| 362 | _Pvt_Extensions |
| 363 | |
| 364 | # Paket dependency manager |
| 365 | .paket/paket.exe |
| 366 | paket-files/ |
| 367 | |
| 368 | # FAKE - F# Make |
| 369 | .fake/ |
| 370 | |
| 371 | # CodeRush personal settings |
| 372 | .cr/personal |
| 373 | |
| 374 | # Python Tools for Visual Studio (PTVS) |
| 375 | __pycache__/ |
| 376 | *.pyc |
| 377 | |
| 378 | # Cake - Uncomment if you are using it |
| 379 | # tools/** |
| 380 | # !tools/packages.config |
| 381 | |
| 382 | # Tabs Studio |
| 383 | *.tss |
| 384 | |
| 385 | # Telerik's JustMock configuration file |
| 386 | *.jmconfig |
| 387 | |
| 388 | # BizTalk build output |
| 389 | *.btp.cs |
| 390 | *.btm.cs |
| 391 | *.odx.cs |
| 392 | *.xsd.cs |
| 393 | |
| 394 | # OpenCover UI analysis results |
| 395 | OpenCover/ |
| 396 | |
| 397 | # Azure Stream Analytics local run output |
| 398 | ASALocalRun/ |
| 399 | |
| 400 | # MSBuild Binary and Structured Log |
| 401 | *.binlog |
| 402 | |
| 403 | # NVidia Nsight GPU debugger configuration file |
| 404 | *.nvuser |
| 405 | |
| 406 | # MFractors (Xamarin productivity tool) working folder |
| 407 | .mfractor/ |
| 408 | |
| 409 | # Local History for Visual Studio |
| 410 | .localhistory/ |
| 411 | |
| 412 | # Visual Studio History (VSHistory) files |
| 413 | .vshistory/ |
| 414 | |
| 415 | # BeatPulse healthcheck temp database |
| 416 | healthchecksdb |
| 417 | |
| 418 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 |
| 419 | MigrationBackup/ |
| 420 | |
| 421 | # Ionide (cross platform F# VS Code tools) working folder |
| 422 | .ionide/ |
| 423 | |
| 424 | # Fody - auto-generated XML schema |
| 425 | FodyWeavers.xsd |
| 426 | |
| 427 | # Local History for Visual Studio Code |
| 428 | .history/ |
| 429 | |
| 430 | # Windows Installer files from build outputs |
| 431 | *.cab |
| 432 | *.msi |
| 433 | *.msix |
| 434 | *.msm |
| 435 | *.msp |
| 436 | |
| 437 | # JetBrains Rider |
| 438 | *.sln.iml |
| 439 | |
| 440 | |
| 441 | # Vim swap file |
| 442 | *.swp |
| 443 | |
| 444 | # Python virtual env |
| 445 | .venv |
| 446 | android/samples/mobile/.idea/deploymentTargetSelector.xml |
| 447 | |
| 448 | # Mac OS files |
| 449 | .DS_Store |
| 450 | |
| 451 | /ts/packages/cli/.collection-backups |
| 452 | /ts/packages/cli/.import-states |
| 453 | |
| 454 | # agent files |
| 455 | .claude/ |
| 456 | |
| 457 | # WebBench execution artifacts |
| 458 | traces/ |
| 459 | *.trace.json |
| 460 | test-results-*.md |
| 461 | ts/packages/agentSdkWrapper/plans/ |
| 462 | |