-
Notifications
You must be signed in to change notification settings - Fork 46
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
Use is_whitespace
more
#202
Open
Paalon
wants to merge
13
commits into
JuliaData:master
Choose a base branch
from
Paalon:scanner-whitespace-more
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Commits on Jun 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for a9d3d1a - Browse repository at this point
Copy the full SHA a9d3d1aView commit details -
Configuration menu - View commit details
-
Copy full SHA for a56bdce - Browse repository at this point
Copy the full SHA a56bdceView commit details
Commits on Jun 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 76f857b - Browse repository at this point
Copy the full SHA 76f857bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 787111e - Browse repository at this point
Copy the full SHA 787111eView commit details
Commits on Jun 21, 2024
-
Add objects to represent YAML versions.
Here we use abstract type & subtyping because it's common traits pattern in Julia. We do not need to export these objects because we can use strings for versions in user-facing functions like: ```julia function load(str::AbstractString; version::YAMLVersion) # ... end function load(str::AbstractString; version::AbstractString) version == "1.1" ? load(str, version=YAMLV1_1()) : version == "1.2" ? load(str, version=YAMLV1_2()) : throw(ErrorException()) end load(str, version="1.1") ```
Configuration menu - View commit details
-
Copy full SHA for 73a52ff - Browse repository at this point
Copy the full SHA 73a52ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3dbeadf - Browse repository at this point
Copy the full SHA 3dbeadfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3983d9c - Browse repository at this point
Copy the full SHA 3983d9cView commit details -
Configuration menu - View commit details
-
Copy full SHA for d3358b9 - Browse repository at this point
Copy the full SHA d3358b9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1f329f2 - Browse repository at this point
Copy the full SHA 1f329f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 331c5a2 - Browse repository at this point
Copy the full SHA 331c5a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 78c04b3 - Browse repository at this point
Copy the full SHA 78c04b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5378896 - Browse repository at this point
Copy the full SHA 5378896View commit details -
Configuration menu - View commit details
-
Copy full SHA for a13f9ed - Browse repository at this point
Copy the full SHA a13f9edView commit details
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.