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

Fix autofixes run on a nested directory #1269

Merged
merged 4 commits into from
Sep 26, 2023
Merged

Fix autofixes run on a nested directory #1269

merged 4 commits into from
Sep 26, 2023

Conversation

72636c
Copy link
Member

@72636c 72636c commented Sep 25, 2023

@changeset-bot
Copy link

changeset-bot bot commented Sep 25, 2023

🦋 Changeset detected

Latest commit: 9d507df

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
skuba Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Comment on lines +122 to +123
// The file outside of our `nestedDir` remains uncommitted.
expect(statuses).toStrictEqual(['absent', '*added', 'unmodified', 'absent']);
Copy link
Member Author

Choose a reason for hiding this comment

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

Does this check out as reasonable design? If you run skuba lint in /packages/package, I assume it would be surprising for a file in another directory to get committed as part of autofixes.

The overarching counterpoint is that running skuba lint on each subdirectory separately is actually problematic for autofixing in general. What we really need is a single autofix commit to be produced per repository, not per subdirectory.

Copy link
Member Author

Choose a reason for hiding this comment

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

I think this may be the best incremental fix we can put in place for now, but it ties in to a broader investigation into how we better support monorepos:

  • If a monorepo contains only skuba projects: it may be best to run skuba lint at the repository root
  • If a monorepo contains a mix of projects including 1 skuba one: this PR works well
  • If a monorepo contains a mix of projects including >1 skuba one: this PR helps but you'd still be running X lints which would try to push X separate autofix commits

Copy link
Contributor

Choose a reason for hiding this comment

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

Makes sense. Multiple commits in it's current state also won't work either right now unless we calculate a dynamic message

@@ -128,7 +128,7 @@ and maps them to GitHub GraphQL [FileChanges].
```typescript
import { GitHub } from 'skuba';

const fileChanges = await GitHub.readFileChanges([
const fileChanges = await GitHub.readFileChanges(dir, [
Copy link
Member Author

Choose a reason for hiding this comment

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

ChangedFiles are relative to dir so we really need both to correctly evaluate FileChanges

@72636c 72636c marked this pull request as ready for review September 26, 2023 04:03
@72636c 72636c requested review from a team as code owners September 26, 2023 04:03
@72636c 72636c merged commit 474f975 into master Sep 26, 2023
19 checks passed
@72636c 72636c deleted the nested-autofix branch September 26, 2023 04:07
This was referenced Sep 26, 2023
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.

None yet

2 participants