-
Notifications
You must be signed in to change notification settings - Fork 5
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
refactor(core): ARC-69 ignore rest of sonar smells #73
Conversation
8987464
to
c309ff2
Compare
src/redux/apiSlice.ts
Outdated
// eslint-disable-next-line no-console | ||
console.log('sending refresh token....'); // NOSONAR |
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.
are these consoles really necessary
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.
This is not needed. This can be removed.
// eslint-disable-next-line no-console | ||
console.log('Configuration file copied to public directory.'); // NOSONAR |
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.
same is the necessary
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.
This is only during the development, we can keep this.
// eslint-disable-next-line no-console | ||
console.log('Configuration file written in current directory.'); // NOSONAR |
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.
same is the necessary
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.
Same for this this is only during development.
@Yogi-Vishwas are these consoles really required |
ignore sonar code smells related to unexpected console statments in handling errors
c309ff2
to
d26c4b3
Compare
|
ignore sonar code smells related to error handling consoles and unpredictable any types