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

Conficting eslint/prettier warnings causing build error #1063

Open
trillium opened this issue Nov 23, 2024 · 0 comments
Open

Conficting eslint/prettier warnings causing build error #1063

trillium opened this issue Nov 23, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@trillium
Copy link
Contributor

trillium commented Nov 23, 2024

Describe the bug
There was a conflict between the eslinst and prettier rules that cause my build to fail for a social share icon I'm using1:

      <use
        xlinkHref="#wing"
        // eslint-disable-next-line prettier/prettier
        className="group-hover:animate-flutter-left group-focus:animate-flutter-left origin-center animate-[flutter_430ms_ease-in-out]"
      />
      <use
        xlinkHref="#wing"
        // eslint-disable-next-line prettier/prettier
        className="group-hover:animate-flutter-right group-focus:animate-flutter-right origin-center scale-x-[-1] animate-[flutter_500ms_ease-in-out]"
      />

FIle here:
https://github.com/trillium/trilliumsmith.com/blob/main/components/social-icons/icons.tsx

To Reproduce
Steps to reproduce the behavior:

  1. Go to a component file
  2. Add classes "group-hover:animate-flutter-right group-focus:animate-flutter-right origin-center scale-x-[-1] animate-[flutter_500ms_ease-in-out]" to a component
  3. Save
  4. Build
  5. See error:
Replace "⏎········className="group-hover:animate-flutter-right·group-focus:animate-flutter-right·origin-center·scale-x-[-1]·animate-[flutter_500ms_ease-in-out]"
with "··className="origin-center·scale-x-[-1]·animate-[flutter_500ms_ease-in-out]·group-hover:animate-flutter-right·group-focus:animate-flutter-right"
  1. Correct error to suggested state
  2. Save
  3. Observe class order to revert to order in step 2 and still cause build error

Expected behavior
Expect auto format saved order to be valid and not cause build errors.

@trillium trillium added the bug Something isn't working label Nov 23, 2024
@trillium trillium changed the title Conficting eslint/prettier warnings Conficting eslint/prettier warnings causing build error Nov 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant