-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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 eslint for vue-related stuff #1715
Conversation
@@ -87,13 +84,13 @@ export function renderMain(data, storyStore) { | |||
Use "() => ({ template: '<my-comp></my-comp>' })" or "() => ({ components: MyComp, template: '<my-comp></my-comp>' })" when defining the story. | |||
`, | |||
}; | |||
return renderError(error); | |||
renderError(error); |
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.
renderError
has no return value, so it's safe
Codecov Report
@@ Coverage Diff @@
## master #1715 +/- ##
==========================================
+ Coverage 21.23% 21.24% +<.01%
==========================================
Files 252 252
Lines 5702 5700 -2
Branches 683 688 +5
==========================================
Hits 1211 1211
Misses 3970 3970
+ Partials 521 519 -2
Continue to review full report at Codecov.
|
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.
Awesome
.eslintignore
had avue
line since vue support was WIP. This PR turns eslint on for those folders.