Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat: standardize OAuth2 endpoints and implement token revocation#18809

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
ThomasK33 wants to merge2 commits intomain
base:main
Choose a base branch
Loading
fromthomask33/07-07-feat_standardize_oauth2_endpoints_and_add_token_revocation
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 16 additions & 10 deletions.claude/scripts/format.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -101,30 +101,36 @@ fi
# Get the file extension to determine the appropriate formatter
file_ext="${file_path##*.}"

# Helper function to run formatter and handle errors
run_formatter() {
local target="$1"
local file_type="$2"

if! make FILE="$file_path""$target";then
echo"Error: Failed to format$file_type file:$file_path">&2
exit 2
fi
echo"✓ Formatted$file_type file:$file_path"
}
# Change to the project root directory (where the Makefile is located)
cd"$(dirname"$0")/../.."

# Call the appropriate Makefile target based on file extension
case"$file_ext"in
go)
make fmt/go FILE="$file_path"
echo"✓ Formatted Go file:$file_path"
run_formatter"fmt/go""Go"
;;
js | jsx | ts | tsx)
make fmt/ts FILE="$file_path"
echo"✓ Formatted TypeScript/JavaScript file:$file_path"
run_formatter"fmt/ts""TypeScript/JavaScript"
;;
tf | tfvars)
make fmt/terraform FILE="$file_path"
echo"✓ Formatted Terraform file:$file_path"
run_formatter"fmt/terraform""Terraform"
;;
sh)
make fmt/shfmt FILE="$file_path"
echo"✓ Formatted shell script:$file_path"
run_formatter"fmt/shfmt""shell script"
;;
md)
make fmt/markdown FILE="$file_path"
echo"✓ Formatted Markdown file:$file_path"
run_formatter"fmt/markdown""Markdown"
;;
*)
echo"No formatter available for file extension:$file_ext"
Expand Down
232 changes: 203 additions & 29 deletionscoderd/apidoc/docs.go
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

Loading
Loading

[8]ページ先頭

©2009-2025 Movatter.jp