-
Notifications
You must be signed in to change notification settings - Fork 89
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
SALTO-7363: Removing unused exports from all non-adapter packages #7226
Conversation
@@ -6,4 +6,3 @@ | |||
* CERTAIN THIRD PARTY SOFTWARE MAY BE CONTAINED IN PORTIONS OF THE SOFTWARE. See NOTICE FILE AT https://github.com/salto-io/salto/blob/main/NOTICES | |||
*/ | |||
export { createClientDefinitions } from './clients' | |||
export { PAGINATION as pagination } from './pagination' |
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.
Didn't review the rest of the PR, but please don't remove things from service placeholder as this serves as a placeholder to create a new adapter
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.
I've removed the service placeholder adapter from this PR, we will work out how to handle it separately.
bf4cffe
to
46311ac
Compare
@@ -29,6 +29,9 @@ import { | |||
getSalesforceClient, | |||
} from './helpers/salesforce' | |||
import * as callbacks from '../src/callbacks' | |||
// Importing getCredentialsFromUser since this file is the only place it's used but it's only referenced by name for spying | |||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | |||
import { getCredentialsFromUser as _getCredentialsFromUser } from '../src/callbacks' |
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.
do we need both the lint disable and the as
thing?
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.
Yes, not using a declared variable not starting in an underscore is a TS warning, not an eslint one.
If we want to not do the rename we would need to use a @ts-ignore
directive instead of an eslint-disable
directive which is more dangerous.
Preparation for enabling knip unused exports rules.
Additional context for reviewer
Release Notes:
None.
User Notifications:
None.