-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: setup github actions #79
Conversation
f38b01c
to
7a5ce0c
Compare
@@ -29,8 +29,5 @@ module.exports = { | |||
rules: { | |||
"import/order": "off", | |||
"react-hooks/exhaustive-deps": "error", | |||
"prettier/prettier": ["warn", { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why was this removed? this will require a change in indentation for all the files in the code base right? 😰
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just moved it
@@ -0,0 +1,7 @@ | |||
{ | |||
"printWidth": 120, | |||
"tabWidth": 4, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh what is the diff between having it in eslintrc and prettierrc?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so the prettierrc is the file that most vscodes are setup to read from when you have pritier installed
so i moved this here so my format on save could work properly and itll still match the linting
No description provided.