microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dev/georgeng/cli_interrupt

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.gitignore

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