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

Update versions of lint libraries #201

Merged
merged 13 commits into from
Aug 27, 2022
Merged

Conversation

gollumnima
Copy link
Contributor

@gollumnima gollumnima commented Jul 28, 2022

What this PR does / why we need it?

  • update package.json.
    • remove node-sass, add sass
    • update versions of typescript and eslint
  • modify eslint setting
  • need to discuss with type error (Wip)

Any background context you want to provide?

I've uploaded issue with type on #196
Do I roll back typescript to previous version for the backward compatibility or just add type file for navigator?

What are the relevant tickets?

Working on #196

Checklist

  • Added relevant tests or not required
  • Didn't break anything

@CLAassistant
Copy link

CLAassistant commented Jul 28, 2022

CLA assistant check
All committers have signed the CLA.

@gollumnima
Copy link
Contributor Author

I've pulled updated code and downgraded version of typescript.

@gollumnima gollumnima changed the title Update versions of libraries and working in process for type issue Update versions of lint libraries Aug 7, 2022
Comment on lines 16 to 28
// const pointers = {
// mouseup: 'pointerup',
// mouseout: 'pointerup',
// mousedown: 'pointerdown',
// mousemove: 'pointermove',
// };

const microsoft = {
mouseup: 'MSPointerUp',
mouseout: 'MSPointerUp',
mousedown: 'MSPointerDown',
mousemove: 'MSPointerMove',
};
// const microsoft = {
// mouseup: 'MSPointerUp',
// mouseout: 'MSPointerUp',
// mousedown: 'MSPointerDown',
// mousemove: 'MSPointerMove',
// };
Copy link
Contributor

Choose a reason for hiding this comment

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

Please delete the comments of old code.

Comment on lines 38 to 45
// if (global.navigator.pointerEnabled) {
// event(el, pointers[type], fn);
// } else if (global.navigator.msPointerEnabled) {
// event(el, microsoft[type], fn);
// } else {
event(el, touch[type], fn);
event(el, type, fn);
// }
Copy link
Contributor

Choose a reason for hiding this comment

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

Same here!

@blurfx
Copy link
Contributor

blurfx commented Aug 8, 2022

CI build fails because sass is not included in the dependencies. I think this problem will be solved when #202 is merged into master.

@gollumnima
Copy link
Contributor Author

@blurfx I've rolled back the code. Sorry for the late response.

@blurfx
Copy link
Contributor

blurfx commented Aug 21, 2022

@gollumnima I think I missed something. Why did you commented these codes before? to remove or just temporary?

@gollumnima
Copy link
Contributor Author

@blurfx Because when I updated the version of typescript, the commented code made type error. So I just rolled back to the previous version. At the time, I was considering whether updating the version of typescript and making d.ts file to fix type error or just removing this code. I thought I had left a note for this somewhere, but I cannot find any note🥲

@gollumnima
Copy link
Contributor Author

@blurfx Ah I found this link. Then can I delete the commented code here?

@blurfx
Copy link
Contributor

blurfx commented Aug 27, 2022

@gollumnima Sorry for late response. I think we can drop old browser support through remove these commented codes.

@gollumnima
Copy link
Contributor Author

image
@blurfx In the local environment, the build succeeded but ci/build failed for this lint issue. Can I just add dependencies in useEffect logic? I'm afraid that my work might affect the result of the whole code.

@blurfx
Copy link
Contributor

blurfx commented Aug 27, 2022

@gollumnima I think some empty dependencies are intended. How about changing the eslint react-hooks/exhaustive-deps rule to warn?

@gollumnima
Copy link
Contributor Author

@blurfx I think our ci rule is too strict for the lint issue 🥲.

@blurfx
Copy link
Contributor

blurfx commented Aug 27, 2022

The warning was treated as an error when the action runner set process.env.CI to true.

Now we have many ways to solve this problem.

  1. Turn off the react-hooks/exhaustive-deps rule
  2. Add eslint-ignore comments to all code where errors occur
  3. Modify hook dependency
  4. set process.env.CI to false manually

@gollumnima
Copy link
Contributor Author

@blurfx Finally...!

@blurfx
Copy link
Contributor

blurfx commented Aug 27, 2022

Great work 😄 Thank you for your contribution!

@blurfx blurfx merged commit 7d52252 into hackerwins:main Aug 27, 2022
@@ -1,3 +1,4 @@
/* eslint-disable react-hooks/exhaustive-deps */
Copy link
Contributor

Choose a reason for hiding this comment

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

I think disabling the lint rules makes it more explicit to specify line numbers using eslint-disable-line or eslint-disable-next-line comment.

Reference: Disabling Rules - ESLint

@gollumnima @blurfx Would it be okay could I work on this proposal? 🥺

Copy link
Contributor

Choose a reason for hiding this comment

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

@x86chi Yes, and if you found an unintentional empty dependency array, could you please update it instead of using eslint-disable comment?

Copy link
Contributor

Choose a reason for hiding this comment

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

Sure!

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.

4 participants