Skip to content

Commit

Permalink
Merge 0feddab into ac11844
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Oct 30, 2020
2 parents ac11844 + 0feddab commit 4d87f64
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -46,7 +46,7 @@
"cross-env": "7.0.2",
"es6-object-assign": "1.1.0",
"eslint": "7.12.1",
"eslint-config-standard": "15.0.1",
"eslint-config-standard": "16.0.0",
"eslint-plugin-html": "6.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
Expand Down
1 change: 1 addition & 0 deletions src/services/messagebox/MessageBox.js
Expand Up @@ -59,6 +59,7 @@ const init = function (type, options, cb, resolve = null, reject = null) {
queue.push(instance)
}

// eslint-disable-next-line default-param-last
const initModal = function (type, options = {}, cb) {
if (isPromiseSupported()) {
return new Promise((resolve, reject) => {
Expand Down
1 change: 1 addition & 0 deletions src/services/notification/Notification.js
Expand Up @@ -49,6 +49,7 @@ const init = (options, cb, resolve = null, reject = null) => {
queue.push(instance)
}

// eslint-disable-next-line default-param-last
const _notify = (options = {}, cb) => {
// simplify usage: pass string as option.content
if (isString(options)) {
Expand Down
4 changes: 2 additions & 2 deletions src/utils/dom.utils.js
Expand Up @@ -114,8 +114,8 @@ export function ensureElementMatchesFunction () {
function (s) {
const matches = (this.document || this.ownerDocument).querySelectorAll(s)
let i = matches.length
while (--i >= 0 && matches.item(i) !== this) {
}
// eslint-disable-next-line no-empty
while (--i >= 0 && matches.item(i) !== this) {}
return i > -1
}
}
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Expand Up @@ -1639,10 +1639,10 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
resolved "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=

eslint-config-standard@15.0.1:
version "15.0.1"
resolved "https://registry.npm.taobao.org/eslint-config-standard/download/eslint-config-standard-15.0.1.tgz?cache=0&sync_timestamp=1603852633498&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-config-standard%2Fdownload%2Feslint-config-standard-15.0.1.tgz#1262eafaba66f4f03fdf3cf655a28aa8b40868b7"
integrity sha1-EmLq+rpm9PA/3zz2VaKKqLQIaLc=
eslint-config-standard@16.0.0:
version "16.0.0"
resolved "https://registry.npm.taobao.org/eslint-config-standard/download/eslint-config-standard-16.0.0.tgz?cache=0&sync_timestamp=1603950405657&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-config-standard%2Fdownload%2Feslint-config-standard-16.0.0.tgz#5f21e9b8be8be28c096e592e1137769d33c5cd92"
integrity sha1-XyHpuL6L4owJblkuETd2nTPFzZI=

eslint-import-resolver-node@^0.3.4:
version "0.3.4"
Expand Down

0 comments on commit 4d87f64

Please sign in to comment.