Skip to content
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 in Jira adapter #7234

Merged
merged 1 commit into from
Feb 12, 2025

Conversation

yelly
Copy link
Contributor

@yelly yelly commented Feb 10, 2025

Preparation for enabling unused exports rules in knip.


Additional context for reviewer


Release Notes:
None.


User Notifications:
None.

@yelly yelly requested a review from IdoZakk February 10, 2025 11:42
@coveralls
Copy link

Coverage Status

coverage: 93.643% (+0.007%) from 93.636%
when pulling b18cdc8 on yelly:SALTO-7363-jira
into 7f3fb05 on salto-io:main.

Copy link
Contributor

@IdoZakk IdoZakk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great!
A few comments below

Comment on lines -63 to -73
export const findObjects = (elements: Element[], names: string[]): ObjectType[] | undefined => {
const types = elements.filter(isObjectType).filter(element => names.includes(element.elemID.name))

if (types.length !== names.length) {
const missingTypes = names.filter(name => !types.map(t => t.elemID.name).includes(name)).join(', ')
log.warn(`could not find the following objects: ${missingTypes}`)
return undefined
}
return types
}

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a util function, I would like to keep it

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But no one uses it ever, so it's obviously not so useful...
Also, knip won't allow us to keep it exported (that's the point) and TS won't allow us to keep it unexported, so the only real way to keep this is either to comment it out or export it from the main index.ts, both of which seem silly.
WDYT?

Copy link
Contributor

@IdoZakk IdoZakk Feb 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't we add a comment to ignore this line like we do in lint?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There isn't a line level ignore option in knip and ignoring the whole file is overkill IMO.
I guess we could use a @ts-ignore directive which is a bit dangerous (because it suppresses all ts checks). I'll try it out.
Do you really think these functions will be used in the future though? My prior is that utility functions that aren't used now will never be used in most cases.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can a file be ignored only for one rule? if so, I think util files are OK to be ignored.
I reviewed those functions again and I am OK with removing them

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Regrettably it's all or nothing.
If we face this with functions we actually want to keep we'll work this out.

Comment on lines -102 to -106
export const getDefaultAdapterConfig = async (): Promise<JiraConfig> => {
const defaultConfigInstance = await createDefaultInstanceFromType('jira', configType)
return defaultConfigInstance.value as JiraConfig
}

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would like to keep this util functions

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But no one uses it ever, so it's obviously not so useful...
Also, knip won't allow us to keep it exported (that's the point) and TS won't allow us to keep it unexported, so the only real way to keep this is either to comment it out or export it from the main index.ts, both of which seem silly.
WDYT?

@yelly yelly requested a review from IdoZakk February 10, 2025 14:51
@yelly yelly merged commit 8b3204a into salto-io:main Feb 12, 2025
55 checks passed
@yelly yelly deleted the SALTO-7363-jira branch February 12, 2025 13:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants