-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding prettier commands and prettier check to the lint workflow
Also running the prettier command for the first time Signed-off-by: ytimocin <[email protected]>
- Loading branch information
Showing
701 changed files
with
8,173 additions
and
8,765 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
{ | ||
"name": "Radius - Contributor", | ||
// For details see https://github.com/radius-project/radius/tree/main/docs/contributing/contributing-code/contributing-code-prerequisites | ||
"image": "mcr.microsoft.com/devcontainers/base:ubuntu", | ||
"features": { | ||
//Git and GitHub Setup | ||
"ghcr.io/devcontainers/features/git:1": {}, | ||
"ghcr.io/devcontainers/features/github-cli:1": {}, | ||
//Programming languages | ||
"ghcr.io/devcontainers/features/go:1": {}, | ||
"ghcr.io/guiyomh/features/gotestsum:0.1.1": {}, | ||
"ghcr.io/devcontainers/features/node:1": {}, | ||
"ghcr.io/devcontainers-contrib/features/typescript:2": {}, | ||
"ghcr.io/devcontainers/features/python:1": {}, | ||
//Container and K8s | ||
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": { | ||
"minikube": "none" | ||
}, | ||
"ghcr.io/devcontainers/features/docker-in-docker:2": { | ||
"version": "latest", | ||
"moby": true | ||
}, | ||
//Tools | ||
"ghcr.io/eitsupi/devcontainer-features/jq-likes:2": {}, | ||
"ghcr.io/mpriscella/features/kind:1": {}, | ||
"ghcr.io/dhoeric/features/stern:1": {}, | ||
//Dapr | ||
"ghcr.io/dapr/cli/dapr-cli:0": {} | ||
"name": "Radius - Contributor", | ||
// For details see https://github.com/radius-project/radius/tree/main/docs/contributing/contributing-code/contributing-code-prerequisites | ||
"image": "mcr.microsoft.com/devcontainers/base:ubuntu", | ||
"features": { | ||
//Git and GitHub Setup | ||
"ghcr.io/devcontainers/features/git:1": {}, | ||
"ghcr.io/devcontainers/features/github-cli:1": {}, | ||
//Programming languages | ||
"ghcr.io/devcontainers/features/go:1": {}, | ||
"ghcr.io/guiyomh/features/gotestsum:0.1.1": {}, | ||
"ghcr.io/devcontainers/features/node:1": {}, | ||
"ghcr.io/devcontainers-contrib/features/typescript:2": {}, | ||
"ghcr.io/devcontainers/features/python:1": {}, | ||
//Container and K8s | ||
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": { | ||
"minikube": "none" | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"redhat.vscode-yaml", | ||
"golang.go", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"ms-azuretools.vscode-bicep", | ||
"ms-kubernetes-tools.vscode-kubernetes-tools", | ||
"ms-azuretools.vscode-dapr", | ||
"ms-vscode.makefile-tools" | ||
] | ||
} | ||
"ghcr.io/devcontainers/features/docker-in-docker:2": { | ||
"version": "latest", | ||
"moby": true | ||
}, | ||
// Prerequisite for Code Generation, see https://github.com/radius-project/radius/tree/main/docs/contributing/contributing-code/contributing-code-prerequisites#code-generation | ||
// Adding workspace as safe directory to avoid permission issues | ||
"postCreateCommand": "git config --global --add safe.directory /workspaces/radius && cd typespec && npm ci && npm install -g autorest && npm install -g oav && go install sigs.k8s.io/controller-tools/cmd/[email protected] && go install go.uber.org/mock/[email protected]", | ||
"hostRequirements": { | ||
"memory": "8gb" | ||
}, | ||
} | ||
//Tools | ||
"ghcr.io/eitsupi/devcontainer-features/jq-likes:2": {}, | ||
"ghcr.io/mpriscella/features/kind:1": {}, | ||
"ghcr.io/dhoeric/features/stern:1": {}, | ||
//Dapr | ||
"ghcr.io/dapr/cli/dapr-cli:0": {} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"redhat.vscode-yaml", | ||
"golang.go", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"ms-azuretools.vscode-bicep", | ||
"ms-kubernetes-tools.vscode-kubernetes-tools", | ||
"ms-azuretools.vscode-dapr", | ||
"ms-vscode.makefile-tools" | ||
] | ||
} | ||
}, | ||
// Prerequisite for Code Generation, see https://github.com/radius-project/radius/tree/main/docs/contributing/contributing-code/contributing-code-prerequisites#code-generation | ||
// Adding workspace as safe directory to avoid permission issues | ||
"postCreateCommand": "git config --global --add safe.directory /workspaces/radius && cd typespec && npm ci && npm install -g autorest && npm install -g oav && go install sigs.k8s.io/controller-tools/cmd/[email protected] && go install go.uber.org/mock/[email protected]", | ||
"hostRequirements": { | ||
"memory": "8gb" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# ------------------------------------------------------------ | ||
# Copyright 2023 The Radius Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# ------------------------------------------------------------ | ||
|
||
name: Check code formatting is up-to-date | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- release/* | ||
|
||
concurrency: | ||
group: prettier-${{ github.event.pull_request.number || github.sha }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
prettier-check: | ||
name: Prettier | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Check out repo | ||
uses: actions/checkout@v4 | ||
- name: Setup NodeJS | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "22" | ||
- name: Run `make prettier-check` | ||
id: prettier-check | ||
run: | | ||
make prettier-check | ||
- name: Check for Prettier failures | ||
if: steps.prettier-check.outcome == 'failure' | ||
run: | | ||
echo "Prettier check failed. Please fix the formatting issues." | ||
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# .prettierignore | ||
pkg/validator/testdata/put-environments-invalid-json.json | ||
|
||
hack/bicep-types-radius/generated/* | ||
|
||
bicep-types/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# ------------------------------------------------------------ | ||
# Copyright 2023 The Radius Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# ------------------------------------------------------------ | ||
|
||
.PHONY: prettier-check prettier-format me prettier | ||
|
||
PRETTIER_VERSION := 3.3.3 | ||
|
||
prettier-check: | ||
@npx prettier@$(PRETTIER_VERSION) --check "*/**/*.{ts,js,mjs,json}" | ||
|
||
prettier-format: | ||
@npx prettier@$(PRETTIER_VERSION) --write "*/**/*.{ts,js,mjs,json}" | ||
|
||
me: | ||
@echo "🪄💄🪄💄🪄💄" | ||
|
||
prettier: | ||
@npx prettier@$(PRETTIER_VERSION) --write "*/**/*.{ts,js,mjs,json}" |
35 changes: 16 additions & 19 deletions
35
deploy/devcontainer-feature/src/radcli/devcontainer-feature.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,18 @@ | ||
{ | ||
"name": "Radius CLI", | ||
"id": "radcli", | ||
"version": "0.1.0", | ||
"dependsOn": { | ||
"ghcr.io/dhoeric/features/oras:1": {} | ||
}, | ||
"description": "Installs the Radius CLI along with needed dependencies.", | ||
"documentationURL": "https://docs.radapp.io/installation/", | ||
"options": { | ||
"version": { | ||
"type": "string", | ||
"proposals": [ | ||
"latest", | ||
"edge" | ||
], | ||
"default": "latest", | ||
"description": "Select or enter an Radius CLI version. Use 'latest' for the latest stable version, 'edge' for the latest development version, or a specific version number (e.g. 0.28.0)." | ||
} | ||
"name": "Radius CLI", | ||
"id": "radcli", | ||
"version": "0.1.0", | ||
"dependsOn": { | ||
"ghcr.io/dhoeric/features/oras:1": {} | ||
}, | ||
"description": "Installs the Radius CLI along with needed dependencies.", | ||
"documentationURL": "https://docs.radapp.io/installation/", | ||
"options": { | ||
"version": { | ||
"type": "string", | ||
"proposals": ["latest", "edge"], | ||
"default": "latest", | ||
"description": "Select or enter an Radius CLI version. Use 'latest' for the latest stable version, 'edge' for the latest development version, or a specific version number (e.g. 0.28.0)." | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.