Imported Upstream version 1.34.0
[platform/upstream/grpc.git] / .gitignore
1 # C/C++ build outputs
2 .build/
3 bins
4 gens
5 libs
6 objs
7
8 # Python items
9 cython_debug/
10 python_build/
11 yapf_virtual_environment/
12 python_pylint_venv/
13 .coverage*
14 .eggs
15 htmlcov/
16 dist/
17 *.egg
18 py27_gevent/
19 py27_native/
20 py3[0-9]_gevent/
21 py3[0-9]_native/
22 a.out
23 src/python/grpcio_*/LICENSE
24 src/python/grpcio_status/grpc_status/google/rpc/status.proto
25 .pytype
26 *.egg-info
27
28 # Node installation output
29 node_modules
30 src/node/extension_binary/
31
32 # gcov coverage data
33 reports
34 coverage
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
59 cache.mk
60
61 # Ruby's local gem information
62 Gemfile.lock
63
64 # Temporary test reports
65 report.xml
66 */sponge_log.xml
67 latency_trace.txt
68 latency_trace.*.txt
69
70 # port server log
71 portlog.txt
72
73 # gyp generated make files
74 *-gyp.mk
75 out
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
90 xcuserdata
91 *.xccheckout
92 *.moved-aside
93 DerivedData
94 *.hmap
95 *.ipa
96 *.xcuserstate
97 *.DS_Store
98
99 # Swift Package Manager files
100 Package.resolved
101
102 # Objective-C generated files
103 *.pbobjc.*
104 *.pbrpc.*
105 src/objective-c/**/Build
106
107 # Cocoapods artifacts
108 Pods/
109 Podfile.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
122 bazel-*
123 bazel_format_virtual_environment/
124 tools/bazel-*
125
126 # Debug output
127 gdb.txt
128
129 # ctags file
130 tags
131
132 # perf data
133 memory_usage.csv
134 perf.data
135 perf.data.old
136
137 # bm_diff
138 bm_diff_new/
139 bm_diff_old/
140 bm_*.json
141
142 # cmake build files
143 **/cmake/build/
144
145 # Visual Studio Code artifacts
146 .vscode/*
147 .history/
148
149 # Clion artifacts
150 cmake-build-debug/
151
152 # Benchmark outputs
153 BenchmarkDotNet.Artifacts/
154
155 # pyenv config
156 .python-version
157
158 # clang JSON compilation database file
159 compile_commands.json