[ACS-6575] code fix and split action suite (#3604)

* code split and fix

* code split and fix

* code split and fix

* [ACS-6575]code fix in workflow
This commit is contained in:
Akash Rathod
2024-01-19 13:09:07 +05:30
committed by GitHub
parent c77528c530
commit 608e6c5eb4
19 changed files with 134 additions and 10 deletions

View File

@@ -0,0 +1,26 @@
{
"extends": "../../../.eslintrc.json",
"ignorePatterns": [
"!**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"e2e/playwright/create-actions/tsconfig.e2e.json"
],
"createDefaultProgram": true
},
"plugins": [
"rxjs",
"unicorn"
],
"rules": {
"@typescript-eslint/no-floating-promises": "off"
}
}
]
}