Run prettier on the pipeline yaml files (#2979)

* move prettierrc up one level

* add a prettierignore

* update files
This commit is contained in:
Amber Brown 2023-08-01 21:41:31 +10:00 коммит произвёл GitHub
Родитель 940e5a04e2
Коммит ede320dd33
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
19 изменённых файлов: 529 добавлений и 518 удалений

Просмотреть файл

@ -37,7 +37,8 @@ linters-settings:
stylecheck:
# added additional checks for comments in Go.
# Refer https://staticcheck.io/docs/options#checks for details
checks: ["all", "-ST1000", "-ST1003", "-ST1016", "-ST1020", "-ST1021", "-ST1022"]
checks:
["all", "-ST1000", "-ST1003", "-ST1016", "-ST1020", "-ST1021", "-ST1022"]
dot-import-whitelist:
- github.com/onsi/ginkgo/v2
- github.com/onsi/gomega

Просмотреть файл

@ -1,7 +1,7 @@
# if you include this template, also include template-az-cli-logout.yml to
# remove the credentials from the CI VM.
parameters:
azureDevOpsJSONSPN: ''
azureDevOpsJSONSPN: ""
steps:
- script: |
set -e

Просмотреть файл

@ -1,10 +1,10 @@
parameters:
dryRun: ''
purgeTTL: ''
purgeCreatedTag: ''
resourceGroupDeletePrefixes: ''
subscriptionCredentialsJSON: ''
subscriptionId: ''
dryRun: ""
purgeTTL: ""
purgeCreatedTag: ""
resourceGroupDeletePrefixes: ""
subscriptionCredentialsJSON: ""
subscriptionId: ""
steps:
- script: |

Просмотреть файл

@ -1,6 +1,6 @@
parameters:
azureDevOpsJSONSPN: ''
subscriptionID: ''
azureDevOpsJSONSPN: ""
subscriptionID: ""
steps:
- script: |

Просмотреть файл

@ -1,5 +1,5 @@
parameters:
rpImageACR: ''
rpImageACR: ""
steps:
- script: |
set -e

10
.prettierignore Normal file
Просмотреть файл

@ -0,0 +1,10 @@
*aro.openshift.io*.yaml
/pkg/**/staticresources/
/pkg/deploy/assets/
/pkg/operator/controllers/muo/test_files/
/pkg/portal/assets/
/pkg/portal/cluster/testdocs/
/pkg/util/dynamichelper/discovery/
/portal/v2/node_modules/
/swagger/
/vendor/

Просмотреть файл