-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added lessons learned document revised language added transfer
- Loading branch information
Showing
5 changed files
with
54 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Anti patterns | ||
|
||
This document contains a list of "don't do this" type of things. The intent is to add lessons learned on how NOT TO DO things. | ||
|
||
|
||
Check failure on line 5 in docs/antipatterns.md GitHub Actions / build
Check failure on line 5 in docs/antipatterns.md GitHub Actions / build
|
||
### Blocking nodes with your editor by executing ripgrep | ||
|
||
We notice some users running processes taking a lot of CPU and IO with rg (short for ripgrep). This code is executed by Visual Studio Code and is probably not adding any value to the user. | ||
|
||
Jan Trienes commented: | ||
``` | ||
Check failure on line 11 in docs/antipatterns.md GitHub Actions / build
|
||
a good thing to know here is that VSCode recursive search | ||
excludes patterns given in .gitignore and . ignore. | ||
So best practice is to have a language-specific gitignore | ||
in the project to avoid searches over common directories with | ||
tens of thousands of small files (like venv/node_modules etc.) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters