-
Notifications
You must be signed in to change notification settings - Fork 300
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
[minor] add unbundledJS option #448
Conversation
``` | ||
npm install electrode-react-webapp --save | ||
``` | ||
npm install electrode-react-webapp --save |
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.
```bash
npm install electrode-react-webapp --save
app[method.toLowerCase()](path, (request, response) => { //eslint-disable-line | ||
const handleStatus = (data) => { | ||
app[method.toLowerCase()](path, (request, response) => { | ||
//eslint-disable-line |
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.
What does this eslint-disable-line for?
app.use(koaRouter.routes()); | ||
}) | ||
.then(() => next()) | ||
.catch(next); | ||
}; |
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.
Need to add /* eslint-enable */
back at the end of the file?
In according to changes in line 3
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.
that's to disable a single rule for the entire file.
👍 LGTM |
No description provided.