-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(plugin-typescript): setup plugin project base #917
base: main
Are you sure you want to change the base?
Conversation
Code PushUp😟 Code PushUp report has regressed – compared target commit 62cbc04 with source commit 1686dda. 🕵️ See full comparison in Code PushUp portal 🔍 🏷️ Categories👎 3 groups regressed, 👎 7 audits regressed, 11 audits changed without impacting score🗃️ Groups
15 other groups are unchanged. 🛡️ Audits
578 other audits are unchanged. |
export default tseslint.config( | ||
...baseConfig, | ||
{ | ||
files: ['**/*.ts', '!**/mocks'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other projects don't have mocks
directory excluded this way. Is it needed? The **/mocks/fixtures
pattern is globally ignored, BTW.
Co-authored-by: Matěj Chalk <[email protected]>
This PR include the foundation for the TypeScript plugin.
It includes Nx related files, testing and typescript setup.