-
-
Notifications
You must be signed in to change notification settings - Fork 93
Add ability to choose a different formatter #646
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 10 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
efc0153
- Add ability to choose a different formatter (internal, none, shfmt)
DannyBen c870e6c
fix specs
DannyBen cefdc59
fix shfmt formatter and add support for custom command
DannyBen 149ce5f
fix settings schema
DannyBen 914e7b6
add formatter specs
DannyBen d2119ec
install shfmt for ci tests
DannyBen 6c0bd9a
rubocop
DannyBen 6d86fff
Merge branch 'master' into add/lint-customization
DannyBen 986c803
change formatter values from symbols to strings
DannyBen c7d699e
Merge branch 'master' into add/lint-customization
DannyBen a7b655c
Update spec/bashly/script/formatter_spec.rb
DannyBen 1eeb78b
fix settings formatter schema definition
DannyBen 96ed811
Merge branch 'master' into add/lint-customization
DannyBen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,44 @@ | ||
require 'open3' | ||
require 'shellwords' | ||
|
||
module Bashly | ||
module Script | ||
class Formatter | ||
attr_reader :script, :mode | ||
|
||
def initialize(script, mode: nil) | ||
@script = script | ||
@mode = mode&.to_s || 'internal' | ||
end | ||
|
||
def formatted_script | ||
case mode | ||
when 'internal' then script.gsub(/\s+\n/m, "\n\n") | ||
when 'external' then shfmt_result | ||
when 'none' then script | ||
else custom_formatter_result mode | ||
end | ||
end | ||
|
||
private | ||
|
||
def shfmt_result | ||
custom_formatter_result %w[shfmt --case-indent --indent 2] | ||
end | ||
|
||
def custom_formatter_result(command) | ||
command = Shellwords.split command if command.is_a? String | ||
|
||
begin | ||
output, error, status = Open3.capture3(*command, stdin_data: script) | ||
rescue Errno::ENOENT | ||
raise Error, "Command not found: g`#{command.first}`" | ||
end | ||
|
||
raise Error, "Failed running g`#{Shellwords.join command}`:\n\n#{error}" unless status.success? | ||
|
||
output | ||
end | ||
end | ||
end | ||
end |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -44,4 +44,4 @@ ISSUE TRACKER | |
AUTHORS | ||
Lana Lang. | ||
|
||
Version 0.1.0 July 2025 download(1) | ||
Version 0.1.0 August 2025 download(1) |
This file contains hidden or 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 hidden or 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 @@ | ||
#<Bashly::Error:"Failed running g`shfmt --diff`:\n\n"> |
This file contains hidden or 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 @@ | ||
#<Bashly::Error: Command not found: g`my_formatter`> |
This file contains hidden or 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,14 @@ | ||
#!/usr/bin/env bash | ||
|
||
funk() { | ||
cat <<EOF | ||
start multiline heredoc test | ||
|
||
end multiline heredoc test | ||
EOF | ||
|
||
echo "unnecessary multiline test" | ||
|
||
echo "unnecessary multiline test complete" | ||
echo "rogue indentation" | ||
} |
This file contains hidden or 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,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
funk() { | ||
cat <<EOF | ||
start multiline heredoc test | ||
|
||
|
||
|
||
end multiline heredoc test | ||
EOF | ||
|
||
echo "unnecessary multiline test" | ||
|
||
echo "unnecessary multiline test complete" | ||
echo "rogue indentation" | ||
} |
This file contains hidden or 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,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
funk() | ||
{ | ||
cat <<EOF | ||
start multiline heredoc test | ||
|
||
|
||
|
||
end multiline heredoc test | ||
EOF | ||
|
||
echo "unnecessary multiline test" | ||
|
||
echo "unnecessary multiline test complete" | ||
echo "rogue indentation" | ||
} |
This file contains hidden or 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 hidden or 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,53 @@ | ||
describe Script::Formatter do | ||
subject { described_class.new script, mode: mode } | ||
|
||
let(:script) { File.read "spec/fixtures/formatter/#{script_id}.sh" } | ||
let(:script_id) { :simple } | ||
let(:mode) { nil } | ||
|
||
describe '#formatted_script' do | ||
it 'formats the script using the internal formatter' do | ||
expect(subject.formatted_script).to match_approval 'formatter/internal' | ||
end | ||
|
||
context 'with mode: none' do | ||
let(:mode) { 'none' } | ||
|
||
it 'returns the original script' do | ||
expect(subject.formatted_script).to eq script | ||
end | ||
end | ||
|
||
context 'with mode: external' do | ||
let(:mode) { 'external' } | ||
|
||
it 'uses shfmt to format the script' do | ||
expect(subject.formatted_script).to match_approval 'formatter/shfmt' | ||
end | ||
end | ||
|
||
context 'with mode: shfmt (string)' do | ||
let(:mode) { 'shfmt --func-next-line' } | ||
|
||
it 'uses the given command shfmt to format the script' do | ||
expect(subject.formatted_script).to match_approval 'formatter/shfmt-custom' | ||
end | ||
end | ||
|
||
context 'when the external command does not exist' do | ||
let(:mode) { 'my_formatter' } | ||
|
||
it 'raises a Bashly::Error' do | ||
expect { subject.formatted_script }.to raise_approval 'formatter/error-not-found' | ||
end | ||
end | ||
|
||
context 'when the external command fails' do | ||
let(:mode) { 'shfmt --diff' } | ||
|
||
it 'raises a a Bashly::Error' do | ||
expect { subject.formatted_script }.to raise_approval 'formatter/error-failure' | ||
end | ||
end | ||
end | ||
end |
This file contains hidden or 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,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
funk() { | ||
cat <<EOF | ||
start multiline heredoc test | ||
|
||
|
||
|
||
end multiline heredoc test | ||
EOF | ||
|
||
echo "unnecessary multiline test" | ||
|
||
|
||
|
||
echo "unnecessary multiline test complete" | ||
echo "rogue indentation" | ||
} |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.