-
Notifications
You must be signed in to change notification settings - Fork 985
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
chore: ignore auto generated lint-fix files #17783
Conversation
Jenkins BuildsClick to see older builds (16)
|
lol, tests fail with :D
|
I'll wait for @ilmotta's go ahead before merging this PR. |
84% of end-end tests have passed
Failed tests (3)Click to expandClass TestOneToOneChatMultipleSharedDevicesNewUi:
Class TestCommunityMultipleDeviceMergedTwo:
Class TestGroupChatMultipleDeviceMergedNewUI:
Expected to fail tests (4)Click to expandClass TestOneToOneChatMultipleSharedDevicesNewUiTwo:
Class TestOneToOneChatMultipleSharedDevicesNewUi:
Class TestGroupChatMultipleDeviceMergedNewUI:
Passed tests (38)Click to expandClass TestGroupChatMultipleDeviceMergedNewUI:
Class TestActivityMultipleDevicePRTwo:
Class TestActivityMultipleDevicePR:
Class TestOneToOneChatMultipleSharedDevicesNewUiTwo:
Class TestCommunityMultipleDeviceMergedTwo:
Class TestCommunityMultipleDeviceMerged:
Class TestCommunityOneDeviceMerged:
Class TestOneToOneChatMultipleSharedDevicesNewUi:
Class TestActivityCenterContactRequestMultipleDevicePR:
|
@siddarthkay, I noticed this formatting problem happening a few times in the past with certain libraries. Our zprint rules disagree with the clj-kondo files added to the repo automatically. I think we should just tell zprint to ignore whatever is inside |
bd888c2
to
37b139f
Compare
True!
For now I think its fine to just check in these files. We'll rarely touch these files and they may only get modified if and when we upgrade these dependencies, so it seems fair enough to check them in now, while we find a more robust solution for this later :) Thanks @ilmotta |
93197a8
to
7753742
Compare
Hmmm I am not fully convinced that checking in these is a good idea just yet. |
@siddarthkay, sorry if I missed the conversation and that was already discussed, but can't we just put these 2 files to |
I was indeed considering this as a solution. |
Seems to be simpler to just
What say @ilmotta ? |
7753742
to
51821d8
Compare
We get these 2 files auto generated locally as part of make lint-fix `.clj-kondo/taoensso/encore/config.edn` `.clj-kondo/taoensso/encore/taoensso/encore.clj` We don't need them checked in its fine if they're ignored.
51821d8
to
d35f78b
Compare
@siddarthkay, @vkjr, ignoring them is not the most correct approach. Ideally we should just not format them, but still version control them. From clj-kondo's author:
|
We get these 2 files auto generated locally as part of make lint-fix `.clj-kondo/taoensso/encore/config.edn` `.clj-kondo/taoensso/encore/taoensso/encore.clj` We don't need them checked in its fine if they're ignored. This commit adds these folders to `.gitIgnore` - `.clj-kondo/taoensso/` - `.clj-kondo/babashka/`
We get these 2 files auto generated locally as part of
make lint-fix
.clj-kondo/taoensso/encore/config.edn
.clj-kondo/taoensso/encore/taoensso/encore.clj
These ideally don't belong inside the repository.
This PR gitIgnores them for good.
Testing notes
Doesn't require testing, this PR adds dot files related to linting
status: ready