[ACS-9602] resolve issue for upgrading prettier (#4554)

* Build(deps-dev): Bump prettier from 2.8.8 to 3.5.3

Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.5.3.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.5.3)

---
updated-dependencies:
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Resolve issue for upgrading prettier

* Update ADF

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dominikiwanekhyland
2025-05-12 11:47:59 +02:00
committed by GitHub
parent 325d072c4d
commit bf909d9a5b
32 changed files with 234 additions and 62 deletions

View File

@@ -234,7 +234,10 @@ export class ActionTypes {
ActionTypes.SPECIALISETYPE.value,
ActionTypes.SETPROPERTYVALUE.value
];
constructor(public key: string, public value: RuleAction) {}
constructor(
public key: string,
public value: RuleAction
) {}
}
export class ConditionsTypes {
@@ -283,5 +286,8 @@ export class ConditionsTypes {
]
});
static readonly conditions = [ConditionsTypes.MIMETYPE.value, ConditionsTypes.CMNAME.value, ConditionsTypes.SIZE.value, ConditionsTypes.TAG.value];
constructor(public key: string, public value: AcaFolderRulesModule) {}
constructor(
public key: string,
public value: AcaFolderRulesModule
) {}
}