Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,9 @@ dynamically scoped `fix` and `json` behavior.
| Ruby | `rubocop` layout autocorrect | `rubocop` |
| HTML | `superhtml fmt` | `superhtml check` |
| TOML | `taplo` | `taplo` |
| JSON/JSONC/CSS/JS/JSX/TS/TSX | `biome` | `biome` |
| JSON/JSONC/CSS/SCSS/LESS/JS/JSX/TS/TSX | `biome` | `biome` |
| Nix | `nixfmt` | `statix` |
| Protobuf | `buf format` | `buf lint` |
| YAML | `yamlfmt` | - |
| GitHub Actions | `yamlfmt` | `actionlint` + `zizmor` |
| Markdown | `rumdl` | `rumdl` |
Expand Down
4 changes: 3 additions & 1 deletion lib/checkrun/autoformat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ _autoformat_usage() {
" Go: .go" \
" Java: .java" \
" Lua: .lua" \
" Nix: .nix" \
" PHP: .php" \
" Protobuf: .proto" \
" Python: .py" \
" Ruby: .rb" \
" Rust: .rs" \
" Shell: .sh, .bash, .zsh, extensionless files with a shell shebang, .bashrc, .zshrc, .profile, .envrc" \
" Web/data: .css, .js, .jsx, .ts, .tsx, .json, .jsonc, .html, .htm" \
" Web/data: .css, .scss, .less, .js, .jsx, .ts, .tsx, .json, .jsonc, .html, .htm" \
"" \
"Options:" \
" -h, --help Show this help and exit."
Expand Down
4 changes: 3 additions & 1 deletion lib/checkrun/autolint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,15 @@ _autolint_usage() {
" Go: .go" \
" Java: .java" \
" Lua: .lua" \
" Nix: .nix" \
" PHP: .php" \
" Protobuf: .proto" \
" Python: .py" \
" Ruby: .rb" \
" Rust: .rs" \
" Shell: .sh, .bash, .zsh, extensionless files with a shell shebang, .bashrc, .zshrc, .envrc" \
" Systemd: .automount, .device, .mount, .path, .scope, .service, .slice, .socket, .swap, .target, .timer" \
" Web/data: .css, .js, .jsx, .ts, .tsx, .json, .jsonc, .html, .htm" \
" Web/data: .css, .scss, .less, .js, .jsx, .ts, .tsx, .json, .jsonc, .html, .htm" \
"" \
"Options:" \
" --fix Apply safe linter fixes where supported." \
Expand Down
Loading