File tree 3 files changed +15
-0
lines changed
cookiecutter/{{cookiecutter.github_repo_name}}
tests_golden/integration/test_cookiecutter_generation/api/frequenz-api-test
3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 20
20
### Cookiecutter template
21
21
22
22
- The ` pylint ` check ` too-many-return-statements ` is now disabled by default.
23
+ - Generated protobuf files are now ignored by Git.
23
24
24
25
## Bug Fixes
25
26
Original file line number Diff line number Diff line change @@ -144,6 +144,14 @@ cython_debug/
144
144
145
145
# PyCharm
146
146
.idea
147
+ {%- if cookiecutter.type == "api" %}
148
+
149
+ # Auto-generated python files from the protocol buffer compiler
150
+ py /** /* _pb2.py
151
+ py /** /* _pb2.pyi
152
+ py /** /* _pb2_grpc.py
153
+ py /** /* _pb2_grpc.pyi
154
+ {%- endif %}
147
155
148
156
# Automatically generated documentation
149
157
docs /reference /
Original file line number Diff line number Diff line change @@ -145,6 +145,12 @@ cython_debug/
145
145
# PyCharm
146
146
.idea
147
147
148
+ # Auto-generated python files from the protocol buffer compiler
149
+ py /** /* _pb2.py
150
+ py /** /* _pb2.pyi
151
+ py /** /* _pb2_grpc.py
152
+ py /** /* _pb2_grpc.pyi
153
+
148
154
# Automatically generated documentation
149
155
docs /reference /
150
156
site /
You can’t perform that action at this time.
0 commit comments