Before making the PRs in typescript, keep in mind
Sure, here is the translation:
💡 Before making a Pull Request (PR), keep the following recommendations in mind
Synchronization with the Development Branch: Before making the PR, make sure to pull the changes from the
DEV
branch to avoid conflicts when integrating the PR.Code Formatting:
Run Prettier to ensure your code meets style standards.
npx prettier --fix **/{src,test}/**/*.{ts,tsx}
Run ESLint to ensure your code meets formatting standards.
npx eslint --fix **/{src,test}/**/*.{ts,tsx}
Run TypeScript to ensure your code meets formatting standards.
npx tsc -p tsconfig.json --noEmit
Code Compilation: Ensure your code compiles correctly before making the PR.
After meeting the above requirements, use the following template to create the Pull Request (PR): Pull requests template
Last updated