Skip to content
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

Improves .editorconfig compatibility #817

Merged
merged 3 commits into from
Oct 2, 2024

Commits on Mar 14, 2024

  1. Improves .editorconfig compatibility

    My text editor (NeoVim) reports the following error when editing a workshop template:
    
    ``` 
    editorconfig: invalid value for option trim_trailing_whitespace: false  # keep trailing spaces in markdown - 2+ spaces are translated to a hard break (<br/>). trim_trailing_whitespace must be either "true" or "false"
    editorconfig: invalid value for option max_line_length: 100  # please keep this in sync with bin/lesson_check.py!. max_line_length must be a number or "off"
    ```
    
    As per https://editorconfig.org:
    
    > Comments should go on their own lines.
    
    This change brings .editorconfig in line with the file format as documented.
    pgmccann authored Mar 14, 2024
    Configuration menu
    Copy the full SHA
    6506d02 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2024

  1. Configuration menu
    Copy the full SHA
    01c3371 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Leading .editorconfig comments

    Places .editorconfig comments before the corresponding commands rather than after.
    pgmccann authored Sep 9, 2024
    Configuration menu
    Copy the full SHA
    bee2d46 View commit details
    Browse the repository at this point in the history