Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tautcony committed Aug 26, 2024
1 parent 2cbf004 commit 94212a8
Show file tree
Hide file tree
Showing 25 changed files with 3,272 additions and 4,100 deletions.
1,082 changes: 891 additions & 191 deletions composer.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ parameters:
- setup/dashboard/node_modules
- setup/dashboard/ws/node_modules
- setup/dashboard/lib/node_modules
treatPhpDocTypesAsCertain: false
38 changes: 0 additions & 38 deletions setup/dashboard/.eslintrc.js

This file was deleted.

34 changes: 34 additions & 0 deletions setup/dashboard/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import standard from "eslint-config-standard";
import pluginN from "eslint-plugin-n";
import pluginPromise from "eslint-plugin-promise";
import pluginImport from "eslint-plugin-import";

export default [{
files: ["**/*.js"],
ignores: ["**/build", "**/dist", "**/node_modules", "**/*.ts"],
languageOptions: {
globals: {
...globals.browser,
...globals.jquery
}
}
},
pluginJs.configs.recommended,
{
plugins: {
n: pluginN,
import: pluginImport,
promise: pluginPromise
},
rules: standard.rules
},
{
rules: {
semi: ["error", "always"],
quotes: ["error", "double"],
"quote-props": ["off"],
camelcase: ["off"]
}
}];
1 change: 0 additions & 1 deletion setup/dashboard/inc/panel.app_service.ws.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
/* global bootbox, AnsiUp, socket */
"use strict";

// eslint-disable-next-line no-unused-vars
(function ($) {
function showAlert (message) {
bootbox.alert({
Expand Down
Loading

0 comments on commit 94212a8

Please sign in to comment.