microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e27f6d4f19bedffb68cc8de4e5a276cfe65f9be7

Branches

Tags

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

Clone

HTTPS

Download ZIP

.gitignore

440lines · modecode

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