@@ -77,7 +77,6 @@ The checks we perform are the following:
77
77
* Ensure files don't contain merge conflict strings.
78
78
* Ensure files end with a single blank line.
79
79
* Ensure we only use Unix line endings.
80
- * Ensure test files are correctly named.
81
80
* Trim trailing whitespace.
82
81
* Ensure we use [ type-hinting] [ typing ] .
83
82
* Check for common mistakes in [ reStructuredText] [ rest ] in our documentation.
@@ -133,8 +132,6 @@ search for and install them. These are the ones we recommend:
133
132
* ** Conventional Commits:** Adhere to the [ Conventional Commits] [ conventional ]
134
133
specification for commit messages.
135
134
* ** Coverage Gutters:** Display test coverage in the editor.
136
- * ** GitLab Workflow:** Integrate GitLab issues, merge requests, and pipelines
137
- into VS Code.
138
135
* ** GitLens — Git supercharged:** Integrate some of the powerful features of
139
136
[ GitKraken] [ kraken ] into VS Code.
140
137
* ** IntelliCode:** AI-assisted development features.
@@ -235,10 +232,6 @@ Consider adding the following snippets:
235
232
The line at 79 characters is to remind you of the maximum line length, and
236
233
the one at 72 characters is to remind you of the maximum line length for
237
234
comments and docstrings (see [ PEP8] [ pep8 ] ).
238
- * To prevent VS Code from sending telemetry data off-site, add
239
- ``` json
240
- "redhat.telemetry.enabled" : false ,
241
- ```
242
235
* If you'd like the UI to preserve the scope that you're currently editing at
243
236
the top of the file as you scroll through it, you can add
244
237
``` json
@@ -468,14 +461,14 @@ work into logical, working commits. Use the **Conventional Commits** extension
468
461
for VS Code (or something similar) to ensure your commit messages adhere to the
469
462
[ Conventional Commits specification] [ conventional ] .
470
463
471
- Feel free to commit and push small chunks early and often and then use `git
472
- rebase -i` to reorganize your commits before sharing.
464
+ Feel free to commit and push small chunks early and often and then use
465
+ interactive rebase to reorganize your commits before sharing.
473
466
474
467
> ** Note:** If you rebase a branch that's already been pushed to a remote,
475
- > you'll wind up changing the history, which will require a force push with
476
- > ` git push origin +<branch-name> ` . That is permissible (even encouraged), but
477
- > if you've had one or more reviewers or collaborators working with you on the
478
- > branch, * get their buy-in first * before doing a force push.
468
+ > you'll wind up changing the history, which will require a force push. That
469
+ > is permissible (even encouraged), but if you've had one or more reviewers or
470
+ > collaborators working with you on the branch, * get their buy-in first * before
471
+ > doing a force push.
479
472
480
473
### When Work is Complete
481
474
0 commit comments