-
-
Notifications
You must be signed in to change notification settings - Fork 22
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
Linting #24
Linting #24
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Propagate stylistic preferences across editors: | ||
# <https://editorconfig.org> | ||
|
||
# Look no further: this file governs everything below. | ||
root = true | ||
|
||
# Files ought to end on a new line. | ||
# Lines should not end in blank spaces. | ||
[*] | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
# Wrap Markdown at 75 characters | ||
[*.md] | ||
max_line_length = 75 | ||
|
||
# Indent YAML with 2 spaces. | ||
[*.yaml] | ||
indent_style = space | ||
indent_size = 2 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These three lines are in all of the YAML files and I'm not sure how GitHub will react There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GitHub will react just fine, since it conforms to the YAML standard. |
||
name: "Bot: Send Close Pull Request Signal" | ||
|
||
on: | ||
|
@@ -20,4 +21,3 @@ jobs: | |
with: | ||
name: pr | ||
path: ./pr | ||
|
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.
I think it might be good to use the .editorconfig from https://github.com/carpentries/styles, as that is the standard our lessons previously conformed to and also does not trim trailing WS in markdown.
Is there a way to exclude the files inside of
.github/workflow/
?