@@ -46,6 +46,8 @@ make start # Start application in development mode
4646make start-immutable # Start development mode with `yarn install --immutable` in container entrypoint
4747make start-build # Start application in development mode and rebuild container
4848make start-production # Start application with the local production Angular configuration
49+ make start-yarn # Run `yarn start` inside the running container
50+ make start-yarn-prod # Run `yarn start-prod` inside the running container
4951make stop # Stop application containers
5052```
5153
@@ -59,12 +61,14 @@ make fish # Open a fish shell inside the node container
5961### Linting and fixing
6062
6163``` bash
62- make lint # Run TypeScript and SCSS linting
64+ make lint # Run TypeScript, SCSS, and Markdown linting
6365make lint-ts # Run Angular/TypeScript linting
6466make lint-scss # Run SCSS linting with stylelint
65- make fix # Run TypeScript and SCSS auto-fixes
67+ make lint-md # Run markdownlint for all tracked Markdown files
68+ make fix # Run TypeScript, SCSS, and Markdown auto-fixes
6669make fix-ts # Run Angular/TypeScript lint fixes
6770make fix-scss # Run SCSS auto-fixes with stylelint
71+ make fix-md # Run markdownlint auto fixes for tracked Markdown files
6872```
6973
7074### Translations
@@ -114,8 +118,10 @@ yarn build-prod # Create a production build
114118yarn test # Run unit tests
115119yarn lint:ts # Run Angular/TypeScript linting
116120yarn lint:scss # Run stylelint for SCSS files
121+ yarn lint:md # Run markdownlint for all tracked Markdown files
117122yarn fix:ts # Auto-fix Angular/TypeScript lint issues
118123yarn fix:scss # Auto-fix SCSS lint issues
124+ yarn fix:md # Auto-fix markdownlint issues in tracked Markdown files
119125yarn extract-translations # Extract translation keys
120126yarn check-translations # Validate translation files
121127yarn i18n:extract # Run Transloco key extraction
0 commit comments