Merge pull request #12318 from vvlladd28/improvement/eslint-migration/flat-format
Migrating ESLint config to flat format
This commit is contained in:
		
						commit
						e31a4d9cf1
					
				@ -1,74 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "root": true,
 | 
			
		||||
  "ignorePatterns": [
 | 
			
		||||
    "projects/**/*"
 | 
			
		||||
  ],
 | 
			
		||||
  "overrides": [
 | 
			
		||||
    {
 | 
			
		||||
      "files": [
 | 
			
		||||
        "*.ts",
 | 
			
		||||
        "*.tsx"
 | 
			
		||||
      ],
 | 
			
		||||
      "parserOptions": {
 | 
			
		||||
        "project": [
 | 
			
		||||
          "tsconfig.json"
 | 
			
		||||
        ],
 | 
			
		||||
        "createDefaultProgram": true
 | 
			
		||||
      },
 | 
			
		||||
      "extends": [
 | 
			
		||||
        "plugin:@angular-eslint/recommended",
 | 
			
		||||
        "plugin:@angular-eslint/template/process-inline-templates"
 | 
			
		||||
      ],
 | 
			
		||||
      "rules": {
 | 
			
		||||
        "@typescript-eslint/explicit-member-accessibility": [
 | 
			
		||||
          "off",
 | 
			
		||||
          {
 | 
			
		||||
            "accessibility": "explicit"
 | 
			
		||||
          }
 | 
			
		||||
        ],
 | 
			
		||||
        "arrow-parens": [
 | 
			
		||||
          "off",
 | 
			
		||||
          "always"
 | 
			
		||||
        ],
 | 
			
		||||
        "@angular-eslint/component-selector": [
 | 
			
		||||
          "error",
 | 
			
		||||
          {
 | 
			
		||||
            "prefix": [
 | 
			
		||||
              "tb"
 | 
			
		||||
            ]
 | 
			
		||||
          }
 | 
			
		||||
        ],
 | 
			
		||||
        "id-blacklist": [
 | 
			
		||||
          "error",
 | 
			
		||||
          "any",
 | 
			
		||||
          "Number",
 | 
			
		||||
          "String",
 | 
			
		||||
          "string",
 | 
			
		||||
          "Boolean",
 | 
			
		||||
          "boolean",
 | 
			
		||||
          "Undefined",
 | 
			
		||||
          "undefined"
 | 
			
		||||
        ],
 | 
			
		||||
        "import/order": "off",
 | 
			
		||||
        "@typescript-eslint/member-ordering": "off",
 | 
			
		||||
        "no-underscore-dangle": "off",
 | 
			
		||||
        "@typescript-eslint/naming-convention": "off",
 | 
			
		||||
        "jsdoc/newline-after-description": 0
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "files": [
 | 
			
		||||
        "*.html"
 | 
			
		||||
      ],
 | 
			
		||||
      "extends": [
 | 
			
		||||
        "plugin:@angular-eslint/template/recommended",
 | 
			
		||||
        "plugin:tailwindcss/recommended"
 | 
			
		||||
      ],
 | 
			
		||||
      "rules": {
 | 
			
		||||
          "tailwindcss/no-custom-classname": "off",
 | 
			
		||||
          "tailwindcss/migration-from-tailwind-2": "off",
 | 
			
		||||
          "tailwindcss/enforces-negative-arbitrary-values": "off"
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										81
									
								
								ui-ngx/eslint.config.mjs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										81
									
								
								ui-ngx/eslint.config.mjs
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,81 @@
 | 
			
		||||
import eslintJS from "@eslint/js";
 | 
			
		||||
import tsEslint from "typescript-eslint";
 | 
			
		||||
import angular from "angular-eslint";
 | 
			
		||||
import tailwind from "eslint-plugin-tailwindcss";
 | 
			
		||||
 | 
			
		||||
export default tsEslint.config(
 | 
			
		||||
  {
 | 
			
		||||
    files: ["**/*.ts", "*.tsx"],
 | 
			
		||||
    languageOptions: {
 | 
			
		||||
      parserOptions: {
 | 
			
		||||
        project: true,
 | 
			
		||||
        tsconfigRootDir: import.meta.dirname, // or import.meta.dirname for ESM
 | 
			
		||||
      },
 | 
			
		||||
    },
 | 
			
		||||
    extends: [
 | 
			
		||||
      eslintJS.configs.recommended,
 | 
			
		||||
      ...tsEslint.configs.recommended,
 | 
			
		||||
      ...tsEslint.configs.stylistic,
 | 
			
		||||
      ...angular.configs.tsRecommended,
 | 
			
		||||
    ],
 | 
			
		||||
    processor: angular.processInlineTemplates,
 | 
			
		||||
    rules: {
 | 
			
		||||
      "@typescript-eslint/explicit-member-accessibility": [
 | 
			
		||||
        "off",
 | 
			
		||||
        {
 | 
			
		||||
          accessibility: "explicit"
 | 
			
		||||
        }
 | 
			
		||||
      ],
 | 
			
		||||
      "arrow-parens": [
 | 
			
		||||
        "off",
 | 
			
		||||
        "always"
 | 
			
		||||
      ],
 | 
			
		||||
      "@angular-eslint/component-selector": [
 | 
			
		||||
        "error",
 | 
			
		||||
        {
 | 
			
		||||
          prefix: [
 | 
			
		||||
            "tb"
 | 
			
		||||
          ]
 | 
			
		||||
        }
 | 
			
		||||
      ],
 | 
			
		||||
      "id-blacklist": [
 | 
			
		||||
        "error",
 | 
			
		||||
        "any",
 | 
			
		||||
        "Number",
 | 
			
		||||
        "String",
 | 
			
		||||
        "string",
 | 
			
		||||
        "Boolean",
 | 
			
		||||
        "boolean",
 | 
			
		||||
        "Undefined",
 | 
			
		||||
        "undefined"
 | 
			
		||||
      ],
 | 
			
		||||
      "import/order": "off",
 | 
			
		||||
      "@typescript-eslint/member-ordering": "off",
 | 
			
		||||
      "no-underscore-dangle": "off",
 | 
			
		||||
      "@typescript-eslint/naming-convention": "off",
 | 
			
		||||
      "jsdoc/newline-after-description": 0,
 | 
			
		||||
      "@typescript-eslint/consistent-indexed-object-style": "off",
 | 
			
		||||
      "@typescript-eslint/array-type": "off",
 | 
			
		||||
      "no-extra-boolean-cast": "off",
 | 
			
		||||
      "@typescript-eslint/no-empty-function": "off",
 | 
			
		||||
      "@typescript-eslint/no-explicit-any": "off",
 | 
			
		||||
      "@typescript-eslint/no-inferrable-types": "off",
 | 
			
		||||
      "@typescript-eslint/no-unused-vars": "off",
 | 
			
		||||
      "@typescript-eslint/ban-ts-comment": "off",
 | 
			
		||||
      "no-case-declarations": "off"
 | 
			
		||||
    },
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    files: ["**/*.html"],
 | 
			
		||||
    extends: [
 | 
			
		||||
      ...angular.configs.templateRecommended,
 | 
			
		||||
      ...angular.configs.templateAccessibility,
 | 
			
		||||
      ...tailwind.configs["flat/recommended"]
 | 
			
		||||
    ],
 | 
			
		||||
    rules: {
 | 
			
		||||
      "tailwindcss/no-custom-classname": "off",
 | 
			
		||||
      "tailwindcss/migration-from-tailwind-2": "off",
 | 
			
		||||
      "tailwindcss/enforces-negative-arbitrary-values": "off"
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
);
 | 
			
		||||
@ -97,11 +97,6 @@
 | 
			
		||||
    "@angular-devkit/build-angular": "18.2.12",
 | 
			
		||||
    "@angular-devkit/core": "18.2.12",
 | 
			
		||||
    "@angular-devkit/schematics": "18.2.12",
 | 
			
		||||
    "@angular-eslint/builder": "18.4.2",
 | 
			
		||||
    "@angular-eslint/eslint-plugin": "18.4.2",
 | 
			
		||||
    "@angular-eslint/eslint-plugin-template": "18.4.2",
 | 
			
		||||
    "@angular-eslint/schematics": "18.4.2",
 | 
			
		||||
    "@angular-eslint/template-parser": "18.4.2",
 | 
			
		||||
    "@angular/build": "18.2.12",
 | 
			
		||||
    "@angular/cli": "18.2.12",
 | 
			
		||||
    "@angular/compiler-cli": "18.2.13",
 | 
			
		||||
@ -123,13 +118,10 @@
 | 
			
		||||
    "@types/systemjs": "6.15.1",
 | 
			
		||||
    "@types/tinycolor2": "^1.4.6",
 | 
			
		||||
    "@types/tooltipster": "^0.0.35",
 | 
			
		||||
    "@typescript-eslint/eslint-plugin": "^8.16.0",
 | 
			
		||||
    "@typescript-eslint/parser": "^8.16.0",
 | 
			
		||||
    "@typescript-eslint/types": "^8.16.0",
 | 
			
		||||
    "@typescript-eslint/utils": "^8.16.0",
 | 
			
		||||
    "angular-eslint": "~18.4.3",
 | 
			
		||||
    "autoprefixer": "^10.4.20",
 | 
			
		||||
    "directory-tree": "^3.5.2",
 | 
			
		||||
    "eslint": "~9.15.0",
 | 
			
		||||
    "eslint": "~9.17.0",
 | 
			
		||||
    "eslint-plugin-import": "latest",
 | 
			
		||||
    "eslint-plugin-jsdoc": "^50.6.0",
 | 
			
		||||
    "eslint-plugin-prefer-arrow": "latest",
 | 
			
		||||
@ -140,7 +132,8 @@
 | 
			
		||||
    "postinstall-prepare": "^2.0.0",
 | 
			
		||||
    "tailwindcss": "^3.4.15",
 | 
			
		||||
    "ts-node": "^10.9.2",
 | 
			
		||||
    "typescript": "~5.5.4"
 | 
			
		||||
    "typescript": "~5.5.4",
 | 
			
		||||
    "typescript-eslint": "^8.18.1"
 | 
			
		||||
  },
 | 
			
		||||
  "resolutions": {
 | 
			
		||||
    "ace-builds": "1.36.5",
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										263
									
								
								ui-ngx/yarn.lock
									
									
									
									
									
								
							
							
						
						
									
										263
									
								
								ui-ngx/yarn.lock
									
									
									
									
									
								
							@ -34,7 +34,7 @@
 | 
			
		||||
    "@angular-devkit/build-angular" "^18.0.0"
 | 
			
		||||
    "@angular-devkit/core" "^18.0.0"
 | 
			
		||||
 | 
			
		||||
"@angular-devkit/architect@0.1802.12", "@angular-devkit/architect@>=0.1800.0 < 0.1900.0":
 | 
			
		||||
"@angular-devkit/architect@0.1802.12", "@angular-devkit/architect@>= 0.1800.0 < 0.1900.0", "@angular-devkit/architect@>=0.1800.0 < 0.1900.0":
 | 
			
		||||
  version "0.1802.12"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1802.12.tgz#096f8e9cf71f8848c6f0172c03f3f1135509e133"
 | 
			
		||||
  integrity sha512-bepVb2/GtJppYKaeW8yTGE6egmoWZ7zagFDsmBdbF+BYp+HmeoPsclARcdryBPVq68zedyTRdvhWSUTbw1AYuw==
 | 
			
		||||
@ -120,7 +120,7 @@
 | 
			
		||||
    "@angular-devkit/architect" "0.1802.12"
 | 
			
		||||
    rxjs "7.8.1"
 | 
			
		||||
 | 
			
		||||
"@angular-devkit/core@18.2.12", "@angular-devkit/core@^18.0.0":
 | 
			
		||||
"@angular-devkit/core@18.2.12", "@angular-devkit/core@>= 18.0.0 < 19.0.0", "@angular-devkit/core@^18.0.0":
 | 
			
		||||
  version "18.2.12"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-18.2.12.tgz#fb514e9b3c9ea87ddaa1582d3947f1b094c9b387"
 | 
			
		||||
  integrity sha512-NtB6ypsaDyPE6/fqWOdfTmACs+yK5RqfH5tStEzWFeeDsIEDYKsJ06ypuRep7qTjYus5Rmttk0Ds+cFgz8JdUQ==
 | 
			
		||||
@ -132,7 +132,7 @@
 | 
			
		||||
    rxjs "7.8.1"
 | 
			
		||||
    source-map "0.7.4"
 | 
			
		||||
 | 
			
		||||
"@angular-devkit/schematics@18.2.12":
 | 
			
		||||
"@angular-devkit/schematics@18.2.12", "@angular-devkit/schematics@>= 18.0.0 < 19.0.0":
 | 
			
		||||
  version "18.2.12"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-18.2.12.tgz#15d1a8611bf9f18215435604672411b1929bf4d1"
 | 
			
		||||
  integrity sha512-mMea9txHbnCX5lXLHlo0RAgfhFHDio45/jMsREM2PA8UtVf2S8ltXz7ZwUrUyMQRv8vaSfn4ijDstF4hDMnRgQ==
 | 
			
		||||
@ -143,59 +143,64 @@
 | 
			
		||||
    ora "5.4.1"
 | 
			
		||||
    rxjs "7.8.1"
 | 
			
		||||
 | 
			
		||||
"@angular-eslint/builder@18.4.2":
 | 
			
		||||
  version "18.4.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/builder/-/builder-18.4.2.tgz#28a4833919ede3db0a1d905fd903485588282115"
 | 
			
		||||
  integrity sha512-eyI9sreaM9ukA24PCJoSqsjCYOiBf3TZ/Q1WY8PG0SwQWc03qJNqPl5K+/Ptmsc1RtoDCLCU6uaOBFPhb9lDxw==
 | 
			
		||||
 | 
			
		||||
"@angular-eslint/bundled-angular-compiler@18.4.2":
 | 
			
		||||
  version "18.4.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-18.4.2.tgz#3d9827d6aea627e77a93b223af1dc56a3ea5e258"
 | 
			
		||||
  integrity sha512-K7pqmZI3Dl75zlLexyaM7bw4xdgk/3bhP1B6uqDKML9+vIIvccCR2bGvqFurqeFbJlMykzb3H4jytT+HpqV4tg==
 | 
			
		||||
 | 
			
		||||
"@angular-eslint/eslint-plugin-template@18.4.2":
 | 
			
		||||
  version "18.4.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-18.4.2.tgz#5cc70866b7d15fcc85f11cf497283969d3a98c9b"
 | 
			
		||||
  integrity sha512-v9msmIdZK6lOEC4ScDeYKFLpszpJ5Ei+8ifkT7fXXKmPaWtPJtMbW+VGOUNm5Ezi+xByAGCn1qU+OF2aJ/4CLw==
 | 
			
		||||
"@angular-eslint/builder@18.4.3":
 | 
			
		||||
  version "18.4.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/builder/-/builder-18.4.3.tgz#800b8a68b464ddfc0d737b0ad38c7804b463d8e1"
 | 
			
		||||
  integrity sha512-NzmrXlr7GFE+cjwipY/CxBscZXNqnuK0us1mO6Z2T6MeH6m+rRcdlY/rZyKoRniyNNvuzl6vpEsfMIMmnfebrA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@angular-eslint/bundled-angular-compiler" "18.4.2"
 | 
			
		||||
    "@angular-eslint/utils" "18.4.2"
 | 
			
		||||
    "@angular-devkit/architect" ">= 0.1800.0 < 0.1900.0"
 | 
			
		||||
    "@angular-devkit/core" ">= 18.0.0 < 19.0.0"
 | 
			
		||||
 | 
			
		||||
"@angular-eslint/bundled-angular-compiler@18.4.3":
 | 
			
		||||
  version "18.4.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-18.4.3.tgz#0810f76045b854782e6370953cf5324112a65f80"
 | 
			
		||||
  integrity sha512-zdrA8mR98X+U4YgHzUKmivRU+PxzwOL/j8G7eTOvBuq8GPzsP+hvak+tyxlgeGm9HsvpFj9ERHLtJ0xDUPs8fg==
 | 
			
		||||
 | 
			
		||||
"@angular-eslint/eslint-plugin-template@18.4.3":
 | 
			
		||||
  version "18.4.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-18.4.3.tgz#3e9820735f087afad193361e3081fad54dbf4e51"
 | 
			
		||||
  integrity sha512-ijGlX2N01ayMXTpeQivOA31AszO8OEbu9ZQUCxnu9AyMMhxyi2q50bujRChAvN9YXQfdQtbxuajxV6+aiWb5BQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@angular-eslint/bundled-angular-compiler" "18.4.3"
 | 
			
		||||
    "@angular-eslint/utils" "18.4.3"
 | 
			
		||||
    aria-query "5.3.2"
 | 
			
		||||
    axobject-query "4.1.0"
 | 
			
		||||
 | 
			
		||||
"@angular-eslint/eslint-plugin@18.4.2":
 | 
			
		||||
  version "18.4.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin/-/eslint-plugin-18.4.2.tgz#c64b016f404521175c9484145f814787c2a31c00"
 | 
			
		||||
  integrity sha512-Oem4W2P54cPADN9rJenLj90rqDPUQWx5kZiz84FCnsSn5DBdsI5LGQoogNT9y3Jx/9VL/VGIMMA5B6qG+0hVlg==
 | 
			
		||||
"@angular-eslint/eslint-plugin@18.4.3":
 | 
			
		||||
  version "18.4.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/eslint-plugin/-/eslint-plugin-18.4.3.tgz#7618bc6056086a98ed4d888f31185fc62e6be2d1"
 | 
			
		||||
  integrity sha512-AyJbupiwTBR81P6T59v+aULEnPpZBCBxL2S5QFWfAhNCwWhcof4GihvdK2Z87yhvzDGeAzUFSWl/beJfeFa+PA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@angular-eslint/bundled-angular-compiler" "18.4.2"
 | 
			
		||||
    "@angular-eslint/utils" "18.4.2"
 | 
			
		||||
    "@angular-eslint/bundled-angular-compiler" "18.4.3"
 | 
			
		||||
    "@angular-eslint/utils" "18.4.3"
 | 
			
		||||
 | 
			
		||||
"@angular-eslint/schematics@18.4.2":
 | 
			
		||||
  version "18.4.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/schematics/-/schematics-18.4.2.tgz#2dceb682958faceaf7bdf48cf5484d1546544d56"
 | 
			
		||||
  integrity sha512-pZCc3NhfwRT5S0DGXTzKbl3dD4I8K4LRYot+Aq4rzY5LtiGHDSi4PKu2M0OBSRrQFQXq7/2gDXGO0AvH6LX97w==
 | 
			
		||||
"@angular-eslint/schematics@18.4.3":
 | 
			
		||||
  version "18.4.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/schematics/-/schematics-18.4.3.tgz#1d6e9026e0054d556c37750ccff0ecce701561c1"
 | 
			
		||||
  integrity sha512-D5maKn5e6n58+8n7jLFLD4g+RGPOPeDSsvPc1sqial5tEKLxAJQJS9WZ28oef3bhkob6C60D+1H0mMmEEVvyVA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@angular-eslint/eslint-plugin" "18.4.2"
 | 
			
		||||
    "@angular-eslint/eslint-plugin-template" "18.4.2"
 | 
			
		||||
    "@angular-devkit/core" ">= 18.0.0 < 19.0.0"
 | 
			
		||||
    "@angular-devkit/schematics" ">= 18.0.0 < 19.0.0"
 | 
			
		||||
    "@angular-eslint/eslint-plugin" "18.4.3"
 | 
			
		||||
    "@angular-eslint/eslint-plugin-template" "18.4.3"
 | 
			
		||||
    ignore "6.0.2"
 | 
			
		||||
    semver "7.6.3"
 | 
			
		||||
    strip-json-comments "3.1.1"
 | 
			
		||||
 | 
			
		||||
"@angular-eslint/template-parser@18.4.2":
 | 
			
		||||
  version "18.4.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/template-parser/-/template-parser-18.4.2.tgz#9e7d75b53ac8c50bfffeb01dadb297846ebbbed8"
 | 
			
		||||
  integrity sha512-KGjDLUxMsdjaxC+8VTxCG07Q6qshOTWMYTvp2LZ4QBySDQnQuFwsIJIJfU8jJwzJCkPKfVpnyuHggAn7fdYnxA==
 | 
			
		||||
"@angular-eslint/template-parser@18.4.3":
 | 
			
		||||
  version "18.4.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/template-parser/-/template-parser-18.4.3.tgz#2c6c396563a278a6f2dfdb3fbe9d4310ad0c6dc6"
 | 
			
		||||
  integrity sha512-JZMPtEB8yNip3kg4WDEWQyObSo2Hwf+opq2ElYuwe85GQkGhfJSJ2CQYo4FSwd+c5MUQAqESNRg9QqGYauDsiw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@angular-eslint/bundled-angular-compiler" "18.4.2"
 | 
			
		||||
    "@angular-eslint/bundled-angular-compiler" "18.4.3"
 | 
			
		||||
    eslint-scope "^8.0.2"
 | 
			
		||||
 | 
			
		||||
"@angular-eslint/utils@18.4.2":
 | 
			
		||||
  version "18.4.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/utils/-/utils-18.4.2.tgz#65486d64ba0a6f67fa6c9658812492ed74a1a2e2"
 | 
			
		||||
  integrity sha512-+c0r33QSkAnGmu/DYAPfzJJk5QDX4TP2d6EFtsenrufqRkZqrOcK4Q5t61J92Ukkr03XoqTzTDSBjlwAfM56Rw==
 | 
			
		||||
"@angular-eslint/utils@18.4.3":
 | 
			
		||||
  version "18.4.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@angular-eslint/utils/-/utils-18.4.3.tgz#1ad0558b21aaa987ce69604a7624d4b213e84d8c"
 | 
			
		||||
  integrity sha512-w0bJ9+ELAEiPBSTPPm9bvDngfu1d8JbzUhvs2vU+z7sIz/HMwUZT5S4naypj2kNN0gZYGYrW0lt+HIbW87zTAQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@angular-eslint/bundled-angular-compiler" "18.4.2"
 | 
			
		||||
    "@angular-eslint/bundled-angular-compiler" "18.4.3"
 | 
			
		||||
 | 
			
		||||
"@angular/animations@18.2.13":
 | 
			
		||||
  version "18.2.13"
 | 
			
		||||
@ -1524,18 +1529,20 @@
 | 
			
		||||
  integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==
 | 
			
		||||
 | 
			
		||||
"@eslint/config-array@^0.19.0":
 | 
			
		||||
  version "0.19.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.19.0.tgz#3251a528998de914d59bb21ba4c11767cf1b3519"
 | 
			
		||||
  integrity sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==
 | 
			
		||||
  version "0.19.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.19.1.tgz#734aaea2c40be22bbb1f2a9dac687c57a6a4c984"
 | 
			
		||||
  integrity sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@eslint/object-schema" "^2.1.4"
 | 
			
		||||
    "@eslint/object-schema" "^2.1.5"
 | 
			
		||||
    debug "^4.3.1"
 | 
			
		||||
    minimatch "^3.1.2"
 | 
			
		||||
 | 
			
		||||
"@eslint/core@^0.9.0":
 | 
			
		||||
  version "0.9.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.9.0.tgz#168ee076f94b152c01ca416c3e5cf82290ab4fcd"
 | 
			
		||||
  integrity sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==
 | 
			
		||||
  version "0.9.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/core/-/core-0.9.1.tgz#31763847308ef6b7084a4505573ac9402c51f9d1"
 | 
			
		||||
  integrity sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/json-schema" "^7.0.15"
 | 
			
		||||
 | 
			
		||||
"@eslint/eslintrc@^3.2.0":
 | 
			
		||||
  version "3.2.0"
 | 
			
		||||
@ -1552,20 +1559,20 @@
 | 
			
		||||
    minimatch "^3.1.2"
 | 
			
		||||
    strip-json-comments "^3.1.1"
 | 
			
		||||
 | 
			
		||||
"@eslint/js@9.15.0":
 | 
			
		||||
  version "9.15.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.15.0.tgz#df0e24fe869143b59731942128c19938fdbadfb5"
 | 
			
		||||
  integrity sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==
 | 
			
		||||
"@eslint/js@9.17.0":
 | 
			
		||||
  version "9.17.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.17.0.tgz#1523e586791f80376a6f8398a3964455ecc651ec"
 | 
			
		||||
  integrity sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==
 | 
			
		||||
 | 
			
		||||
"@eslint/object-schema@^2.1.4":
 | 
			
		||||
  version "2.1.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.4.tgz#9e69f8bb4031e11df79e03db09f9dbbae1740843"
 | 
			
		||||
  integrity sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==
 | 
			
		||||
"@eslint/object-schema@^2.1.5":
 | 
			
		||||
  version "2.1.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.5.tgz#8670a8f6258a2be5b2c620ff314a1d984c23eb2e"
 | 
			
		||||
  integrity sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==
 | 
			
		||||
 | 
			
		||||
"@eslint/plugin-kit@^0.2.3":
 | 
			
		||||
  version "0.2.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz#812980a6a41ecf3a8341719f92a6d1e784a2e0e8"
 | 
			
		||||
  integrity sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==
 | 
			
		||||
  version "0.2.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/plugin-kit/-/plugin-kit-0.2.4.tgz#2b78e7bb3755784bb13faa8932a1d994d6537792"
 | 
			
		||||
  integrity sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    levn "^0.4.1"
 | 
			
		||||
 | 
			
		||||
@ -2868,62 +2875,62 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/node" "*"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/eslint-plugin@^8.16.0":
 | 
			
		||||
  version "8.16.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.16.0.tgz#ac56825bcdf3b392fc76a94b1315d4a162f201a6"
 | 
			
		||||
  integrity sha512-5YTHKV8MYlyMI6BaEG7crQ9BhSc8RxzshOReKwZwRWN0+XvvTOm+L/UYLCYxFpfwYuAAqhxiq4yae0CMFwbL7Q==
 | 
			
		||||
"@typescript-eslint/eslint-plugin@8.18.1":
 | 
			
		||||
  version "8.18.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.18.1.tgz#992e5ac1553ce20d0d46aa6eccd79dc36dedc805"
 | 
			
		||||
  integrity sha512-Ncvsq5CT3Gvh+uJG0Lwlho6suwDfUXH0HztslDf5I+F2wAFAZMRwYLEorumpKLzmO2suAXZ/td1tBg4NZIi9CQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@eslint-community/regexpp" "^4.10.0"
 | 
			
		||||
    "@typescript-eslint/scope-manager" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/type-utils" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/utils" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/scope-manager" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/type-utils" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/utils" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "8.18.1"
 | 
			
		||||
    graphemer "^1.4.0"
 | 
			
		||||
    ignore "^5.3.1"
 | 
			
		||||
    natural-compare "^1.4.0"
 | 
			
		||||
    ts-api-utils "^1.3.0"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/parser@^8.16.0":
 | 
			
		||||
  version "8.16.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.16.0.tgz#ee5b2d6241c1ab3e2e53f03fd5a32d8e266d8e06"
 | 
			
		||||
  integrity sha512-D7DbgGFtsqIPIFMPJwCad9Gfi/hC0PWErRRHFnaCWoEDYi5tQUDiJCTmGUbBiLzjqAck4KcXt9Ayj0CNlIrF+w==
 | 
			
		||||
"@typescript-eslint/parser@8.18.1":
 | 
			
		||||
  version "8.18.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.18.1.tgz#c258bae062778b7696793bc492249027a39dfb95"
 | 
			
		||||
  integrity sha512-rBnTWHCdbYM2lh7hjyXqxk70wvon3p2FyaniZuey5TrcGBpfhVp0OxOa6gxr9Q9YhZFKyfbEnxc24ZnVbbUkCA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/scope-manager" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/types" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/typescript-estree" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/scope-manager" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/types" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/typescript-estree" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "8.18.1"
 | 
			
		||||
    debug "^4.3.4"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/scope-manager@8.16.0":
 | 
			
		||||
  version "8.16.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.16.0.tgz#ebc9a3b399a69a6052f3d88174456dd399ef5905"
 | 
			
		||||
  integrity sha512-mwsZWubQvBki2t5565uxF0EYvG+FwdFb8bMtDuGQLdCCnGPrDEDvm1gtfynuKlnpzeBRqdFCkMf9jg1fnAK8sg==
 | 
			
		||||
"@typescript-eslint/scope-manager@8.18.1":
 | 
			
		||||
  version "8.18.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.18.1.tgz#52cedc3a8178d7464a70beffed3203678648e55b"
 | 
			
		||||
  integrity sha512-HxfHo2b090M5s2+/9Z3gkBhI6xBH8OJCFjH9MhQ+nnoZqxU3wNxkLT+VWXWSFWc3UF3Z+CfPAyqdCTdoXtDPCQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/types" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/types" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "8.18.1"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/type-utils@8.16.0":
 | 
			
		||||
  version "8.16.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.16.0.tgz#585388735f7ac390f07c885845c3d185d1b64740"
 | 
			
		||||
  integrity sha512-IqZHGG+g1XCWX9NyqnI/0CX5LL8/18awQqmkZSl2ynn8F76j579dByc0jhfVSnSnhf7zv76mKBQv9HQFKvDCgg==
 | 
			
		||||
"@typescript-eslint/type-utils@8.18.1":
 | 
			
		||||
  version "8.18.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.18.1.tgz#10f41285475c0bdee452b79ff7223f0e43a7781e"
 | 
			
		||||
  integrity sha512-jAhTdK/Qx2NJPNOTxXpMwlOiSymtR2j283TtPqXkKBdH8OAMmhiUfP0kJjc/qSE51Xrq02Gj9NY7MwK+UxVwHQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/typescript-estree" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/utils" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/typescript-estree" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/utils" "8.18.1"
 | 
			
		||||
    debug "^4.3.4"
 | 
			
		||||
    ts-api-utils "^1.3.0"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/types@8.16.0", "@typescript-eslint/types@^8.16.0":
 | 
			
		||||
  version "8.16.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.16.0.tgz#49c92ae1b57942458ab83d9ec7ccab3005e64737"
 | 
			
		||||
  integrity sha512-NzrHj6thBAOSE4d9bsuRNMvk+BvaQvmY4dDglgkgGC0EW/tB3Kelnp3tAKH87GEwzoxgeQn9fNGRyFJM/xd+GQ==
 | 
			
		||||
"@typescript-eslint/types@8.18.1", "@typescript-eslint/types@^8.0.0":
 | 
			
		||||
  version "8.18.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.18.1.tgz#d7f4f94d0bba9ebd088de840266fcd45408a8fff"
 | 
			
		||||
  integrity sha512-7uoAUsCj66qdNQNpH2G8MyTFlgerum8ubf21s3TSM3XmKXuIn+H2Sifh/ES2nPOPiYSRJWAk0fDkW0APBWcpfw==
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/typescript-estree@8.16.0":
 | 
			
		||||
  version "8.16.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.16.0.tgz#9d741e56e5b13469b5190e763432ce5551a9300c"
 | 
			
		||||
  integrity sha512-E2+9IzzXMc1iaBy9zmo+UYvluE3TW7bCGWSF41hVWUE01o8nzr1rvOQYSxelxr6StUvRcTMe633eY8mXASMaNw==
 | 
			
		||||
"@typescript-eslint/typescript-estree@8.18.1":
 | 
			
		||||
  version "8.18.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.18.1.tgz#2a86cd64b211a742f78dfa7e6f4860413475367e"
 | 
			
		||||
  integrity sha512-z8U21WI5txzl2XYOW7i9hJhxoKKNG1kcU4RzyNvKrdZDmbjkmLBo8bgeiOJmA06kizLI76/CCBAAGlTlEeUfyg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/types" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/types" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "8.18.1"
 | 
			
		||||
    debug "^4.3.4"
 | 
			
		||||
    fast-glob "^3.3.2"
 | 
			
		||||
    is-glob "^4.0.3"
 | 
			
		||||
@ -2931,22 +2938,22 @@
 | 
			
		||||
    semver "^7.6.0"
 | 
			
		||||
    ts-api-utils "^1.3.0"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/utils@8.16.0", "@typescript-eslint/utils@^8.16.0":
 | 
			
		||||
  version "8.16.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.16.0.tgz#c71264c437157feaa97842809836254a6fc833c3"
 | 
			
		||||
  integrity sha512-C1zRy/mOL8Pj157GiX4kaw7iyRLKfJXBR3L82hk5kS/GyHcOFmy4YUq/zfZti72I9wnuQtA/+xzft4wCC8PJdA==
 | 
			
		||||
"@typescript-eslint/utils@8.18.1", "@typescript-eslint/utils@^8.0.0":
 | 
			
		||||
  version "8.18.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.18.1.tgz#c4199ea23fc823c736e2c96fd07b1f7235fa92d5"
 | 
			
		||||
  integrity sha512-8vikiIj2ebrC4WRdcAdDcmnu9Q/MXXwg+STf40BVfT8exDqBCUPdypvzcUPxEqRGKg9ALagZ0UWcYCtn+4W2iQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@eslint-community/eslint-utils" "^4.4.0"
 | 
			
		||||
    "@typescript-eslint/scope-manager" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/types" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/typescript-estree" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/scope-manager" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/types" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/typescript-estree" "8.18.1"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/visitor-keys@8.16.0":
 | 
			
		||||
  version "8.16.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.16.0.tgz#d5086afc060b01ff7a4ecab8d49d13d5a7b07705"
 | 
			
		||||
  integrity sha512-pq19gbaMOmFE3CbL0ZB8J8BFCo2ckfHBfaIsaOZgBIF4EoISJIdLX5xRhd0FGB0LlHReNRuzoJoMGpTjq8F2CQ==
 | 
			
		||||
"@typescript-eslint/visitor-keys@8.18.1":
 | 
			
		||||
  version "8.18.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.18.1.tgz#344b4f6bc83f104f514676facf3129260df7610a"
 | 
			
		||||
  integrity sha512-Vj0WLm5/ZsD013YeUKn+K0y8p1M0jPpxOkKdbD1wB0ns53a5piVY02zjf072TblEweAbcYiFiPoSMF3kp+VhhQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/types" "8.16.0"
 | 
			
		||||
    "@typescript-eslint/types" "8.18.1"
 | 
			
		||||
    eslint-visitor-keys "^4.2.0"
 | 
			
		||||
 | 
			
		||||
"@vitejs/plugin-basic-ssl@1.1.0":
 | 
			
		||||
@ -3206,6 +3213,21 @@ ajv@^6.12.4, ajv@^6.12.5:
 | 
			
		||||
    json-schema-traverse "^0.4.1"
 | 
			
		||||
    uri-js "^4.2.2"
 | 
			
		||||
 | 
			
		||||
angular-eslint@~18.4.3:
 | 
			
		||||
  version "18.4.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/angular-eslint/-/angular-eslint-18.4.3.tgz#d149df075304af9d4f57661c6886b0e1135c2f2b"
 | 
			
		||||
  integrity sha512-0ZjLzzADGRLUhZC8ZpwSo6CE/m6QhQB/oljMJ0mEfP+lB1sy1v8PBKNsJboIcfEEgGW669Z/efVQ3df88yJLYg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@angular-devkit/core" ">= 18.0.0 < 19.0.0"
 | 
			
		||||
    "@angular-devkit/schematics" ">= 18.0.0 < 19.0.0"
 | 
			
		||||
    "@angular-eslint/builder" "18.4.3"
 | 
			
		||||
    "@angular-eslint/eslint-plugin" "18.4.3"
 | 
			
		||||
    "@angular-eslint/eslint-plugin-template" "18.4.3"
 | 
			
		||||
    "@angular-eslint/schematics" "18.4.3"
 | 
			
		||||
    "@angular-eslint/template-parser" "18.4.3"
 | 
			
		||||
    "@typescript-eslint/types" "^8.0.0"
 | 
			
		||||
    "@typescript-eslint/utils" "^8.0.0"
 | 
			
		||||
 | 
			
		||||
angular-gridster2@~18.0.1:
 | 
			
		||||
  version "18.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/angular-gridster2/-/angular-gridster2-18.0.1.tgz#ad04eff2c05aa693fe892ee66b6aa5e956e4dd13"
 | 
			
		||||
@ -4081,7 +4103,7 @@ critters@0.0.24:
 | 
			
		||||
    postcss "^8.4.23"
 | 
			
		||||
    postcss-media-query-parser "^0.2.3"
 | 
			
		||||
 | 
			
		||||
cross-spawn@^7.0.0, cross-spawn@^7.0.3, cross-spawn@^7.0.5:
 | 
			
		||||
cross-spawn@^7.0.0, cross-spawn@^7.0.3, cross-spawn@^7.0.6:
 | 
			
		||||
  version "7.0.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
 | 
			
		||||
  integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
 | 
			
		||||
@ -5051,17 +5073,17 @@ eslint-visitor-keys@^4.2.0:
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz#687bacb2af884fcdda8a6e7d65c606f46a14cd45"
 | 
			
		||||
  integrity sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==
 | 
			
		||||
 | 
			
		||||
eslint@~9.15.0:
 | 
			
		||||
  version "9.15.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.15.0.tgz#77c684a4e980e82135ebff8ee8f0a9106ce6b8a6"
 | 
			
		||||
  integrity sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==
 | 
			
		||||
eslint@~9.17.0:
 | 
			
		||||
  version "9.17.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.17.0.tgz#faa1facb5dd042172fdc520106984b5c2421bb0c"
 | 
			
		||||
  integrity sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@eslint-community/eslint-utils" "^4.2.0"
 | 
			
		||||
    "@eslint-community/regexpp" "^4.12.1"
 | 
			
		||||
    "@eslint/config-array" "^0.19.0"
 | 
			
		||||
    "@eslint/core" "^0.9.0"
 | 
			
		||||
    "@eslint/eslintrc" "^3.2.0"
 | 
			
		||||
    "@eslint/js" "9.15.0"
 | 
			
		||||
    "@eslint/js" "9.17.0"
 | 
			
		||||
    "@eslint/plugin-kit" "^0.2.3"
 | 
			
		||||
    "@humanfs/node" "^0.16.6"
 | 
			
		||||
    "@humanwhocodes/module-importer" "^1.0.1"
 | 
			
		||||
@ -5070,7 +5092,7 @@ eslint@~9.15.0:
 | 
			
		||||
    "@types/json-schema" "^7.0.15"
 | 
			
		||||
    ajv "^6.12.4"
 | 
			
		||||
    chalk "^4.0.0"
 | 
			
		||||
    cross-spawn "^7.0.5"
 | 
			
		||||
    cross-spawn "^7.0.6"
 | 
			
		||||
    debug "^4.3.2"
 | 
			
		||||
    escape-string-regexp "^4.0.0"
 | 
			
		||||
    eslint-scope "^8.2.0"
 | 
			
		||||
@ -9308,6 +9330,15 @@ typeface-roboto@^1.1.13:
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/typeface-roboto/-/typeface-roboto-1.1.13.tgz#9c4517cb91e311706c74823e857b4bac9a764ae5"
 | 
			
		||||
  integrity sha512-YXvbd3a1QTREoD+FJoEkl0VQNJoEjewR2H11IjVv4bp6ahuIcw0yyw/3udC4vJkHw3T3cUh85FTg8eWef3pSaw==
 | 
			
		||||
 | 
			
		||||
typescript-eslint@^8.18.1:
 | 
			
		||||
  version "8.18.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-8.18.1.tgz#197b284b6769678ed77d9868df180eeaf61108eb"
 | 
			
		||||
  integrity sha512-Mlaw6yxuaDEPQvb/2Qwu3/TfgeBHy9iTJ3mTwe7OvpPmF6KPQjVOfGyEJpPv6Ez2C34OODChhXrzYw/9phI0MQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/eslint-plugin" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/parser" "8.18.1"
 | 
			
		||||
    "@typescript-eslint/utils" "8.18.1"
 | 
			
		||||
 | 
			
		||||
typescript@~5.5.4:
 | 
			
		||||
  version "5.5.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz#d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba"
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user