web: Bump types, fix ESLint errors (#17546)

* Fix config.

* Fix linter.

* Fix ts ignore comments.

* Fix empty functions

* Fix unnamed functions.

* Fix unused parameters.

* Fix define before use.

* Remove unused.

* Replace esbuild-copy-plugin with `fs` module.

---------

Co-authored-by: Teffen Ellis <teffen@goauthentik.io>
This commit is contained in:
dependabot[bot]
2025-12-06 20:21:29 +00:00
committed by GitHub
parent 31b0e73329
commit 8e87585fce
70 changed files with 642 additions and 668 deletions

View File

@@ -1,30 +1,41 @@
import { createESLintPackageConfig } from "@goauthentik/eslint-config";
/**
* @file ESLint Configuration
*
* @import { Config } from "eslint/config";
*/
import tseslint from "typescript-eslint";
import { createESLintPackageConfig, DefaultIgnorePatterns } from "@goauthentik/eslint-config";
import { defineConfig } from "eslint/config";
// @ts-check
/**
* ESLint configuration for authentik's monorepo.
* @type {Config[]}
*/
const ESLintConfig = createESLintPackageConfig({
ignorePatterns: [
"**/dist/**",
"**/out/**",
"**/vendored/**",
"**/.wireit/**",
"**/node_modules/",
"**/.storybook/*",
"coverage/",
"src/locale-codes.ts",
"storybook-static/",
"src/locales/",
"**/*.min.js",
],
});
export default tseslint.config(
...ESLintConfig,
const eslintConfig = defineConfig(
createESLintPackageConfig({
parserOptions: {
tsconfigRootDir: import.meta.dirname,
},
ignorePatterns: [
// ---
...DefaultIgnorePatterns,
"**/dist/**",
"**/out/**",
"**/vendored/**",
"**/.wireit/**",
"**/node_modules/",
"**/.storybook/*",
"coverage/",
"src/locale-codes.ts",
"playwright-report",
"storybook-static/",
"src/locales/",
"**/*.min.js",
],
}),
{
rules: {
"no-console": "off",
@@ -33,27 +44,18 @@ export default tseslint.config(
},
{
rules: {
"no-void": "off",
"no-implicit-coercion": "off",
"prefer-template": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-use-before-define": "off",
"array-callback-return": "off",
"block-scoped-var": "off",
"consistent-return": "off",
"func-names": "off",
"guard-for-in": "off",
"no-bitwise": "off",
"no-div-regex": "off",
"no-else-return": "off",
"no-empty-function": "off",
"no-empty-function": ["error", { allow: ["arrowFunctions"] }],
"no-param-reassign": "off",
"no-throw-literal": "off",
// "no-var": "off",
"prefer-arrow-callback": "off",
"react/jsx-no-leaked-render": "off",
"vars-on-top": "off",
},
},
{
rules: {
"vars-on-top": "off",
},
files: ["**/*.d.ts"],
},
);
export default eslintConfig;