-
Notifications
You must be signed in to change notification settings - Fork 474
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
Prettier + ESLint + onchange = Happiness #493
Conversation
"no-console": 1, // Means warning | ||
"prettier/prettier": 1 // Warning for now, until we get this cleaned up | ||
} | ||
} |
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.
I think we need to remove eslint config from package.json in this case
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.
Good point 👍
May I ask what the rationale behind these rules was? I'm wondering if I should move them over or not.
"no-undefined": "off",
"no-unused-vars": "off",
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.
Good progress. We'll save this for a future 2.x release |
This PR is ready to be reviewed/merged now. |
This adds support for
prettier
working along sideeslint
. It doesn't enable anything.I'm marking this as draft because there is a problem with some variable replacement in one watch command that I'm working on, but I wanted to get this out there for review. I imagine that there will be a follow-on PR after this lands that will reformat all the code in one commit.