-
Notifications
You must be signed in to change notification settings - Fork 122
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
Enable flow-type eslint plugin rules #29
Comments
Are all the disabled rules and warnings in the |
I didn't have much use for them when it was just me working on the code. I'll have to re-enable most of these as part of the Issue. |
then why not just disable eslint? |
It's important to me that the code remains as easy as possible to maintain, especially as the project grows. I'd like to get more people involved improving the codebase as well, not having a standard style would make that difficult. The results of me being lazy about enabling the rules are inconsistencies across the codebase now. How can I ask others to maintain quality if I can't follow the rules myself? And If I do get enough people to contribute, one of the worst things that could happen are arguments over code-style, which I'd like to avoid. |
No I'm asking why you used eslint before if you disable all those rules |
Oh, sure. If you take a look at the currently enabled config, it's already pretty useful; it just doesn't enforce a few style rules I have done out of habit. It helped me catch silly bugs(undefined variables etc.,), and keep stuff like console.logs and debugger statements out of builds. |
Going to punt on the type naming rule. Maybe will be done at a later point. |
Goal
Make the codebase more consistent with clear standards.
Overview
Original issue (#18)
Flow-types helps to reason about the code and maintain a stable API. Unfortunately, some files don't have flow, and the types don't match best-established practices, like avoiding
any
and*Type
type names.Acceptance Criteria
These are the sequence for how these changes should be applied. The only additional eslint rules to run on are listed below.
validation
script to travis-ci Travis eslint validation, flowtype rules #32npm run flow
checks tovalidation
script/travis-ci, fix errors.The text was updated successfully, but these errors were encountered: