Imported Upstream version 1.26.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
25 # Node installation output
26 node_modules
27 src/node/extension_binary/
28
29 # gcov coverage data
30 reports
31 coverage
32 *.gcno
33
34 # profiler output
35 *.prof
36
37 # python compiled objects
38 *.pyc
39
40 # eclipse project files
41 .cproject
42 .project
43 .settings
44
45 # cache for run_tests.py
46 .run_tests_cache
47 .preprocessed_build
48
49 # emacs temp files
50 *~
51
52 # vim temp files
53 .*.swp
54
55 # Makefile's cache
56 cache.mk
57
58 # Ruby's local gem information
59 Gemfile.lock
60
61 # Temporary test reports
62 report.xml
63 */sponge_log.xml
64 latency_trace.txt
65 latency_trace.*.txt
66
67 # port server log
68 portlog.txt
69
70 # gyp generated make files
71 *-gyp.mk
72 out
73
74 # YCM config files
75 .ycm_extra_conf.py
76
77 # XCode
78 ^build/
79 *.pbxuser
80 !default.pbxuser
81 *.mode1v3
82 !default.mode1v3
83 *.mode2v3
84 !default.mode2v3
85 *.perspectivev3
86 !default.perspectivev3
87 xcuserdata
88 *.xccheckout
89 *.moved-aside
90 DerivedData
91 *.hmap
92 *.ipa
93 *.xcuserstate
94 *.DS_Store
95
96 # Objective-C generated files
97 *.pbobjc.*
98 *.pbrpc.*
99 src/objective-c/**/Build
100
101 # Cocoapods artifacts
102 Pods/
103 Podfile.lock
104 *.xcworkspace
105
106 # Artifacts directory
107 /artifacts/
108
109 # Git generated files for conflicting
110 *.orig
111
112 # IDE specific folder for JetBrains IDEs
113 .idea/
114
115 # Bazel files
116 bazel-bin
117 bazel-genfiles
118 bazel-grpc
119 bazel-out
120 bazel-testlogs
121 bazel_format_virtual_environment/
122 tools/bazel-*
123
124 # Debug output
125 gdb.txt
126
127 # ctags file
128 tags
129
130 # perf data
131 memory_usage.csv
132 perf.data
133 perf.data.old
134
135 # bm_diff
136 bm_diff_new/
137 bm_diff_old/
138 bm_*.json
139
140 # cmake build files
141 /cmake/build
142
143 # Visual Studio Code artifacts
144 .vscode/*
145 .history/
146
147 # Clion artifacts
148 cmake-build-debug/
149
150 # Benchmark outputs
151 BenchmarkDotNet.Artifacts/
152
153 # pyenv config
154 .python-version
155