1# C/C++ build outputs
2.build/
3bins
4gens
5libs
6objs
7
8# Python items
9cython_debug/
10python_build/
11yapf_virtual_environment/
12python_pylint_venv/
13.coverage*
14.eggs
15htmlcov/
16dist/
17*.egg
18py27_gevent/
19py27_native/
20py3[0-9]_gevent/
21py3[0-9]_native/
22a.out
23src/python/grpcio_*/LICENSE
24src/python/grpcio_status/grpc_status/google/rpc/status.proto
25.pytype
26*.egg-info
27
28# Node installation output
29node_modules
30src/node/extension_binary/
31
32# gcov coverage data
33reports
34coverage
35*.gcno
36
37# profiler output
38*.prof
39
40# python compiled objects
41*.pyc
42
43# eclipse project files
44.cproject
45.project
46.settings
47
48# cache for run_tests.py
49.run_tests_cache
50.preprocessed_build
51
52# emacs temp files
53*~
54
55# vim temp files
56.*.swp
57
58# Makefile's cache
59cache.mk
60
61# Ruby's local gem information
62Gemfile.lock
63
64# Temporary test reports
65report.xml
66*/sponge_log.xml
67latency_trace.txt
68latency_trace.*.txt
69
70# port server log
71portlog.txt
72
73# gyp generated make files
74*-gyp.mk
75out
76
77# YCM config files
78.ycm_extra_conf.py
79
80# XCode
81^build/
82*.pbxuser
83!default.pbxuser
84*.mode1v3
85!default.mode1v3
86*.mode2v3
87!default.mode2v3
88*.perspectivev3
89!default.perspectivev3
90xcuserdata
91*.xccheckout
92*.moved-aside
93DerivedData
94*.hmap
95*.ipa
96*.xcuserstate
97*.DS_Store
98
99# Swift Package Manager files
100Package.resolved
101
102# Objective-C generated files
103*.pbobjc.*
104*.pbrpc.*
105src/objective-c/**/Build
106
107# Cocoapods artifacts
108Pods/
109Podfile.lock
110*.xcworkspace
111
112# Artifacts directory
113/artifacts/
114
115# Git generated files for conflicting
116*.orig
117
118# IDE specific folder for JetBrains IDEs
119.idea/
120
121# Bazel files
122bazel-*
123bazel_format_virtual_environment/
124tools/bazel-*
125
126# Debug output
127gdb.txt
128
129# ctags file
130tags
131
132# perf data
133memory_usage.csv
134perf.data
135perf.data.old
136
137# bm_diff
138bm_diff_new/
139bm_diff_old/
140bm_*.json
141
142# cmake build files
143**/cmake/build/
144
145# Visual Studio Code artifacts
146.vscode/*
147.history/
148
149# Clion artifacts
150cmake-build-debug/
151
152# Benchmark outputs
153BenchmarkDotNet.Artifacts/
154
155# pyenv config
156.python-version
157
158# clang JSON compilation database file
159compile_commands.json
160