cleanup lint error: ban-comma-operator

This commit is contained in:
segayuu 2017-10-30 11:16:35 +09:00
parent 8d2da56ea5
commit a2e8bfda4e
2 changed files with 2 additions and 3 deletions

View File

@ -439,8 +439,8 @@ oauth = {
consumer_key: CONSUMER_KEY,
consumer_secret: CONSUMER_SECRET,
transport_method: 'header'
}
, url = 'https://api.twitter.com/oauth/request_token';
};
url = 'https://api.twitter.com/oauth/request_token';
request.post({url:url, oauth:oauth}, (e, r, body) => {
// Ideally, you would take the body in the response

View File

@ -3,7 +3,6 @@
"rules": {
"adjacent-overload-signatures": false,
"array-type": false,
"ban-comma-operator": false,
"ban-types": false,
"callable-types": false,
"eofline": false,