Fixed Errors of PR - Bump eslint-plugin-unicorn from 23.0.0 to 25.0.0 (#3267)

Fixed Lint Errorshttps://github.com/ColorlibHQ/AdminLTE/pull/3265
pull/3265/head
Daniel 2020-12-30 13:04:17 +05:30 committed by GitHub
parent 7898357115
commit 1ce6165330
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 15 additions and 23 deletions

View File

@ -47,14 +47,14 @@
], ],
"unicorn/filename-case": "off", "unicorn/filename-case": "off",
"unicorn/import-index": "off", "unicorn/import-index": "off",
"unicorn/no-fn-reference-in-iterator": "off", "unicorn/no-array-callback-reference": "off",
"unicorn/no-for-loop": "off", "unicorn/no-for-loop": "off",
"unicorn/no-null": "off", "unicorn/no-null": "off",
"unicorn/no-unused-properties": "error", "unicorn/no-unused-properties": "error",
"unicorn/prefer-dataset": "off", "unicorn/prefer-dom-node-dataset": "off",
"unicorn/prefer-includes": "off", "unicorn/prefer-includes": "off",
"unicorn/prefer-node-append": "off", "unicorn/prefer-dom-node-append": "off",
"unicorn/prefer-node-remove": "off", "unicorn/prefer-dom-node-remove": "off",
"unicorn/prefer-number-properties": "off", "unicorn/prefer-number-properties": "off",
"unicorn/prefer-optional-catch-binding": "off", "unicorn/prefer-optional-catch-binding": "off",
"unicorn/prefer-query-selector": "off", "unicorn/prefer-query-selector": "off",

View File

@ -36,8 +36,7 @@ const Default = {
loadOnInit: true, loadOnInit: true,
responseType: '', responseType: '',
overlayTemplate: '<div class="overlay"><i class="fas fa-2x fa-sync-alt fa-spin"></i></div>', overlayTemplate: '<div class="overlay"><i class="fas fa-2x fa-sync-alt fa-spin"></i></div>',
onLoadStart() { onLoadStart() {},
},
onLoadDone(response) { onLoadDone(response) {
return response return response
} }

View File

@ -253,10 +253,8 @@ class ControlSidebar {
let sidebarHeight = heights.window - heights.header let sidebarHeight = heights.window - heights.header
if (this._isFooterFixed()) { if (this._isFooterFixed() && $(SELECTOR_FOOTER).css('position') === 'fixed') {
if ($(SELECTOR_FOOTER).css('position') === 'fixed') { sidebarHeight = heights.window - heights.header - heights.footer
sidebarHeight = heights.window - heights.header - heights.footer
}
} }
$controlSidebar.css('height', sidebarHeight) $controlSidebar.css('height', sidebarHeight)

View File

@ -25,8 +25,7 @@ const CLASS_NAME_DROPDOWN_RIGHT = 'dropdown-menu-right'
const CLASS_NAME_DROPDOWN_SUBMENU = 'dropdown-submenu' const CLASS_NAME_DROPDOWN_SUBMENU = 'dropdown-submenu'
// TODO: this is unused; should be removed along with the extend? // TODO: this is unused; should be removed along with the extend?
const Default = { const Default = {}
}
/** /**
* Class Definition * Class Definition

View File

@ -58,10 +58,8 @@ class PushMenu {
expand() { expand() {
const $bodySelector = $(SELECTOR_BODY) const $bodySelector = $(SELECTOR_BODY)
if (this._options.autoCollapseSize) { if (this._options.autoCollapseSize && $(window).width() <= this._options.autoCollapseSize) {
if ($(window).width() <= this._options.autoCollapseSize) { $bodySelector.addClass(CLASS_NAME_OPEN)
$bodySelector.addClass(CLASS_NAME_OPEN)
}
} }
$bodySelector.addClass(CLASS_NAME_IS_OPENING).removeClass(`${CLASS_NAME_COLLAPSED} ${CLASS_NAME_CLOSED}`).delay(50).queue(function () { $bodySelector.addClass(CLASS_NAME_IS_OPENING).removeClass(`${CLASS_NAME_COLLAPSED} ${CLASS_NAME_CLOSED}`).delay(50).queue(function () {
@ -79,10 +77,8 @@ class PushMenu {
collapse() { collapse() {
const $bodySelector = $(SELECTOR_BODY) const $bodySelector = $(SELECTOR_BODY)
if (this._options.autoCollapseSize) { if (this._options.autoCollapseSize && $(window).width() <= this._options.autoCollapseSize) {
if ($(window).width() <= this._options.autoCollapseSize) { $bodySelector.removeClass(CLASS_NAME_OPEN).addClass(CLASS_NAME_CLOSED)
$bodySelector.removeClass(CLASS_NAME_OPEN).addClass(CLASS_NAME_CLOSED)
}
} }
$bodySelector.addClass(CLASS_NAME_COLLAPSED) $bodySelector.addClass(CLASS_NAME_COLLAPSED)

View File

@ -61,17 +61,17 @@ class SidebarSearch {
// Public // Public
init() { init() {
if ($(SELECTOR_DATA_WIDGET).length == 0) { if ($(SELECTOR_DATA_WIDGET).length === 0) {
return return
} }
if ($(SELECTOR_DATA_WIDGET).next(SELECTOR_SEARCH_RESULTS).length == 0) { if ($(SELECTOR_DATA_WIDGET).next(SELECTOR_SEARCH_RESULTS).length === 0) {
$(SELECTOR_DATA_WIDGET).after( $(SELECTOR_DATA_WIDGET).after(
$('<div />', { class: CLASS_NAME_SEARCH_RESULTS }) $('<div />', { class: CLASS_NAME_SEARCH_RESULTS })
) )
} }
if ($(SELECTOR_SEARCH_RESULTS).children(SELECTOR_SEARCH_LIST_GROUP).length == 0) { if ($(SELECTOR_SEARCH_RESULTS).children(SELECTOR_SEARCH_LIST_GROUP).length === 0) {
$(SELECTOR_SEARCH_RESULTS).append( $(SELECTOR_SEARCH_RESULTS).append(
$('<div />', { class: CLASS_NAME_LIST_GROUP }) $('<div />', { class: CLASS_NAME_LIST_GROUP })
) )