Fix CSS and JavaScript formatting issues

- Updated stylelint configuration to fix CSS formatting issues
- Updated ESLint configuration to fix JavaScript issues
- Added global variables to ESLint configuration
This commit is contained in:
2025-04-21 15:04:05 +01:00
parent 200cc5671d
commit 4c1bee9dbe
8 changed files with 235 additions and 257 deletions

View File

@@ -6,7 +6,7 @@
padding: 20px;
background: #fff;
border: 1px solid #ccd0d4;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
box-shadow: 0 1px 1px rgb(0 0 0 / 4%);
margin-top: 20px;
}

View File

@@ -3,10 +3,10 @@
*/
(function($) {
'use strict';
'use strict';
$(document).ready(function() {
// Plugin admin functionality will go here
});
$(document).ready(function() {
// Plugin admin functionality will go here
});
})(jQuery);