mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-04-16 22:24:49 +00:00
build(deps): bump minimatch, @nx/angular, @nx/eslint-plugin, @nx/js, @nx/node, @nx/storybook, @typescript-eslint/eslint-plugin and @typescript-eslint/parser (#11779)
* build(deps): bump minimatch, @nx/angular, @nx/eslint-plugin, @nx/js, @nx/node, @nx/storybook, @typescript-eslint/eslint-plugin and @typescript-eslint/parser Bumps [minimatch](https://github.com/isaacs/minimatch) to 10.2.4 and updates ancestor dependencies [minimatch](https://github.com/isaacs/minimatch), [@nx/angular](https://github.com/nrwl/nx/tree/HEAD/packages/angular), [@nx/eslint-plugin](https://github.com/nrwl/nx/tree/HEAD/packages/eslint-plugin), [@nx/js](https://github.com/nrwl/nx/tree/HEAD/packages/js), [@nx/node](https://github.com/nrwl/nx/tree/HEAD/packages/node), [@nx/storybook](https://github.com/nrwl/nx/tree/HEAD/packages/storybook), [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser). These dependencies need to be updated together. Updates `minimatch` from 10.1.1 to 10.2.4 - [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md) - [Commits](https://github.com/isaacs/minimatch/compare/v10.1.1...v10.2.4) Updates `@nx/angular` from 22.1.3 to 22.6.3 - [Release notes](https://github.com/nrwl/nx/releases) - [Commits](https://github.com/nrwl/nx/commits/22.6.3/packages/angular) Updates `@nx/eslint-plugin` from 22.3.3 to 22.6.3 - [Release notes](https://github.com/nrwl/nx/releases) - [Commits](https://github.com/nrwl/nx/commits/22.6.3/packages/eslint-plugin) Updates `@nx/js` from 22.1.3 to 22.6.3 - [Release notes](https://github.com/nrwl/nx/releases) - [Commits](https://github.com/nrwl/nx/commits/22.6.3/packages/js) Updates `@nx/node` from 22.1.3 to 22.6.3 - [Release notes](https://github.com/nrwl/nx/releases) - [Commits](https://github.com/nrwl/nx/commits/22.6.3/packages/node) Updates `@nx/storybook` from 20.8.4 to 22.6.3 - [Release notes](https://github.com/nrwl/nx/releases) - [Commits](https://github.com/nrwl/nx/commits/22.6.3/packages/storybook) Updates `@typescript-eslint/eslint-plugin` from 6.21.0 to 8.57.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.2/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 6.21.0 to 8.57.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.57.2/packages/parser) --- updated-dependencies: - dependency-name: minimatch dependency-version: 10.2.4 dependency-type: indirect - dependency-name: "@nx/angular" dependency-version: 22.6.3 dependency-type: direct:development - dependency-name: "@nx/eslint-plugin" dependency-version: 22.6.3 dependency-type: direct:development - dependency-name: "@nx/js" dependency-version: 22.6.3 dependency-type: direct:development - dependency-name: "@nx/node" dependency-version: 22.6.3 dependency-type: direct:development - dependency-name: "@nx/storybook" dependency-version: 22.6.3 dependency-type: direct:development - dependency-name: "@typescript-eslint/eslint-plugin" dependency-version: 8.57.2 dependency-type: direct:development - dependency-name: "@typescript-eslint/parser" dependency-version: 8.57.2 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> * refactor(eslint): remove @typescript-eslint/brace-style rule and clean up component file Removed the '@typescript-eslint/brace-style' rule from the ESLint configuration and cleaned up the process-list-cloud.component.ts file by removing the associated eslint-disable comment. * fix(eslint): change @typescript-eslint/prefer-optional-chain rule from error to warn Updated the ESLint configuration to modify the severity of the '@typescript-eslint/prefer-optional-chain' rule from 'error' to 'warn' for improved flexibility in code quality enforcement. * fix(eslint): disable no-explicit-any rule and refactor LogicalSearchCondition type Disabled the '@typescript-eslint/no-explicit-any' rule in the ESLint configuration and refactored the LogicalSearchCondition type to use a type alias instead of an interface for improved clarity and consistency. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Denys Vuika <denys.vuika@gmail.com>
This commit is contained in:
@@ -78,7 +78,7 @@ module.exports = {
|
||||
}
|
||||
],
|
||||
'@typescript-eslint/await-thenable': 'error',
|
||||
'@typescript-eslint/prefer-optional-chain': 'error',
|
||||
'@typescript-eslint/prefer-optional-chain': 'warn',
|
||||
'@typescript-eslint/prefer-readonly': 'error',
|
||||
'@typescript-eslint/no-inferrable-types': 'off',
|
||||
'@typescript-eslint/no-require-imports': 'off',
|
||||
@@ -103,9 +103,9 @@ module.exports = {
|
||||
'@typescript-eslint/member-ordering': 'off',
|
||||
'@typescript-eslint/no-empty-function': 'off',
|
||||
'prefer-arrow/prefer-arrow-functions': 'off',
|
||||
'@typescript-eslint/no-explicit-any': 'off',
|
||||
'prefer-promise-reject-errors': 'error',
|
||||
'brace-style': 'off',
|
||||
'@typescript-eslint/brace-style': 'error',
|
||||
'comma-dangle': 'error',
|
||||
'default-case': 'error',
|
||||
'import/order': 'off',
|
||||
|
||||
@@ -38,8 +38,7 @@ export const LogicalSearchFields = {
|
||||
export type LogicalSearchFields = (typeof LogicalSearchFields)[keyof typeof LogicalSearchFields];
|
||||
|
||||
export type LogicalSearchConditionEnumValuedKeys = { [T in LogicalSearchFields]: string };
|
||||
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||||
export interface LogicalSearchCondition extends LogicalSearchConditionEnumValuedKeys {}
|
||||
export type LogicalSearchCondition = LogicalSearchConditionEnumValuedKeys;
|
||||
|
||||
@Component({
|
||||
selector: 'adf-search-logical-filter',
|
||||
|
||||
@@ -70,8 +70,6 @@ import { ProcessInstanceCloud } from '../../start-process/models/process-instanc
|
||||
|
||||
const PRESET_KEY = 'adf-cloud-process-list.presets';
|
||||
|
||||
/* eslint-disable @typescript-eslint/brace-style */
|
||||
|
||||
@Component({
|
||||
selector: 'adf-cloud-process-list',
|
||||
imports: [
|
||||
|
||||
@@ -87,8 +87,6 @@ const taskPresetsCloudDefaultModel = {
|
||||
]
|
||||
};
|
||||
|
||||
/* eslint-disable @typescript-eslint/brace-style */
|
||||
|
||||
@Directive()
|
||||
// eslint-disable-next-line @angular-eslint/directive-class-suffix
|
||||
export abstract class BaseTaskListCloudComponent<T = unknown>
|
||||
|
||||
6368
package-lock.json
generated
6368
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
14
package.json
14
package.json
@@ -85,11 +85,11 @@
|
||||
"@angular-eslint/template-parser": "19.8.1",
|
||||
"@angular/compiler-cli": "19.2.20",
|
||||
"@chromatic-com/storybook": "4.1.3",
|
||||
"@nx/angular": "22.1.3",
|
||||
"@nx/eslint-plugin": "22.3.3",
|
||||
"@nx/js": "22.1.3",
|
||||
"@nx/node": "22.1.3",
|
||||
"@nx/storybook": "^20.8.4",
|
||||
"@nx/angular": "22.6.3",
|
||||
"@nx/eslint-plugin": "22.6.3",
|
||||
"@nx/js": "22.6.3",
|
||||
"@nx/node": "22.6.3",
|
||||
"@nx/storybook": "^22.6.3",
|
||||
"@nx/workspace": "22.4.5",
|
||||
"@schematics/angular": "19.2.22",
|
||||
"@storybook/addon-themes": "^10.2.0",
|
||||
@@ -103,8 +103,8 @@
|
||||
"@types/node": "^18.16.9",
|
||||
"@types/pdfjs-dist": "2.10.378",
|
||||
"@types/superagent": "^4.1.22",
|
||||
"@typescript-eslint/eslint-plugin": "6.21.0",
|
||||
"@typescript-eslint/parser": "6.21.0",
|
||||
"@typescript-eslint/eslint-plugin": "8.57.2",
|
||||
"@typescript-eslint/parser": "8.57.2",
|
||||
"@typescript-eslint/typescript-estree": "8.41.0",
|
||||
"@typescript-eslint/utils": "^8.51.0",
|
||||
"ajv": "^8.18.0",
|
||||
|
||||
Reference in New Issue
Block a user