diff --git a/docs/repo/ARCHITECTURE.md b/docs/repo/ARCHITECTURE.md index 339c7029..437c32aa 100644 --- a/docs/repo/ARCHITECTURE.md +++ b/docs/repo/ARCHITECTURE.md @@ -46,9 +46,7 @@ We are using `lint-staged` to run linting and tests on staged files. This is the 5. Run tests of affected files (`jest`/`vitest` and `nx`) 6. Lint exports on all `.ts` files (`knip` and `nx`) -We limit automatic fixes to file formatting and linting when possible. For everything else, we let the user to decide on actions to take if there are errors. - -We also use Github actions as an extra safeguard in case users bypass `lint-staged`. +We auto format and apply linting fixes when possible. For everything else, we let the user to decide on actions to take if there are errors. ## Versioning diff --git a/docs/repo/CICD.md b/docs/repo/CICD.md index eedc390d..ffffc566 100644 --- a/docs/repo/CICD.md +++ b/docs/repo/CICD.md @@ -9,13 +9,7 @@ pnpm bootstrap:ci Found in the workflow `.yml` cicd files, this command will run all three tasks in parallel for only affected files: ```bash -npx nx affected -t build,lint,test,lint:knip --parallel=4 -``` - -Lint the monorepo: - -```bash -pnpm lint:mr +npx nx affected -t build,lint,test --parallel=3 ``` Versioning command that will bypass prompts for avoiding manual intervention: