-
-
Notifications
You must be signed in to change notification settings - Fork 30
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
Feature/implement formatter #291
Merged
Merged
Changes from 22 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
cff6dea
acl formatting
ysugimoto 5aaf5b9
wip formatter
ysugimoto cf8c541
Merge branch 'improve/trailing-comment-parsing' into feature/formatter
ysugimoto 005b85d
WIP statement and expression formatting
ysugimoto 00b575d
Merge remote-tracking branch 'origin/improve/trailing-comment-parsing…
ysugimoto 6d94e0e
WIP statement formatter testing
ysugimoto 1eb5733
Merge remote-tracking branch 'origin/improve/trailing-comment-parsing…
ysugimoto 8ef231f
finished statement parging
ysugimoto 225185e
finished basic implementation
ysugimoto f6f548d
modify chunking, documentation
ysugimoto 2b3ae83
linting
ysugimoto 5bbdd55
Merge remote-tracking branch 'origin/main' into feature/formatter
ysugimoto 8530335
keep empty lines
ysugimoto b930a92
add empty line for declaration properties
ysugimoto 33dd59d
implement line stack
ysugimoto 2ce1cdd
chore: add Leading comment
ysugimoto aa0688a
add line struct and slice
ysugimoto d4e8194
formatted as expect for my production vcl
ysugimoto 7db5deb
fix config test
ysugimoto 7e03cb5
commenting, add should_use_unset config
ysugimoto ed3d0a7
documentation
ysugimoto 981697c
tweak documentation
ysugimoto c440bc1
fix complecated expression including comments
ysugimoto a2f4bae
refactor a little
ysugimoto bb2deee
fix prefix expression formatting and add indent_case_labels rule
ysugimoto a0f6e16
merge main
ysugimoto 7ba2ae0
wip merge and refactoring
ysugimoto 55668b9
fix tests with complex comments
ysugimoto 88748f3
Merge pull request #304 from ysugimoto/feature/implement-formatter-merge
ysugimoto 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 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 |
---|---|---|
|
@@ -27,3 +27,6 @@ __generator__/*.csv | |
debugger.log | ||
debug.log | ||
request.json | ||
|
||
.falco.yml | ||
.falco.yaml |
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here are all formatting rules, see #274