- Flow: Guidelines processed concurrently using RxJS
mergeMapwith controlled concurrency - HTTP: Direct POST requests to
/validate_guidelineendpoints - Timeouts: Relies on default HTTP timeouts (typically 2-5 minutes)
- User Experience: Real-time progress updates as each guideline completes
Our Angular monorepo with 360 libraries and 18 applications has architectural violations:
- 15 API libraries importing UI components (breaks build optimization/tree-shaking)
- 68 core/API files importing
@spotdraft/draftkitUI utilities - No architectural tags - all
project.jsonfiles have"tags": []
This file contains hidden or 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
| set -g default-terminal "screen-256color" | |
| set -g prefix C-a | |
| unbind C-b | |
| bind-key C-a send-prefix | |
| unbind % | |
| bind | split-window -h | |
| unbind '"' |
This file contains hidden or 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
| set -g default-terminal "screen-256color" | |
| set -g prefix C-a | |
| unbind C-b | |
| bind-key C-a send-prefix | |
| unbind % | |
| bind | split-window -h | |
| unbind '"' |
-
CTRL + A— Move to the beginning of the line -
CTRL + E— Move to the end of the line -
CTRL + [left arrow]— Move one word backward (on some systems this is ALT + B) -
CTRL + [right arrow]— Move one word forward (on some systems this is ALT + F) -
CTRL + U— (bash) Clear the characters on the line before the current cursor position -
CTRL + U—(zsh) If you're using the zsh, this will clear the entire line -
CTRL + K— Clear the characters on the line after the current cursor position -
ESC + [backspace]— Delete the word in front of the cursor
This file contains hidden or 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
| @import "~@angular/material/theming"; | |
| @include mat-core(); | |
| html, body { | |
| margin: 0; | |
| height: 100%; | |
| } | |
| $soho-app-primary: mat-palette($mat-blue,700); |
This file contains hidden or 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
| async find() { | |
| return 'Hello'; | |
| } |