Skip to content

Commit

Permalink
Rewrite for version 1
Browse files Browse the repository at this point in the history
  • Loading branch information
myrrlyn committed Dec 1, 2021
1 parent 7176242 commit aab0907
Show file tree
Hide file tree
Showing 269 changed files with 23,814 additions and 23,095 deletions.
20 changes: 12 additions & 8 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
########################################################################
# Editor Configuration #
# #
# Configuration file controlling language-specific editor settings for #
# text editors capable of understanding this file. #
# This file controls language-specific settings in text editors that #
# understand it, and allows for the project to set its behavior #
# universally without requiring that all viewers agree with it. #
########################################################################

# All files must be encoded in UTF-8, use ␊ line endings, and include a final
# newline.
# All files must be encoded in UTF-8 and use ␊ as the line *terminator*.
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[Justfile]
indent_size = 8
indent_style = tab

# Markdown files use two-space indentation.
[*.md]
indent_size = 2
indent_style = space

# Rust files use ␉ indentation, with each tab rendered four columns wide.
# Rust files use ␉ indentation at four columns.
[*.rs]
indent_size = 4
indent_style = tab

# Shell scripts use two-space indentation.
[*.sh]
indent_style = 2
indent_size = space
indent_size = 2
indent_style = space

# TOML files use ␉ indentation, with each tab rendered eight columns wide.
# TOML files use ␉ indentation at eight columns.
[*.toml]
indent_size = 8
indent_style = tab
Expand Down
11 changes: 5 additions & 6 deletions .markdownlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@
# more details. #
########################################################################

# Allow identical headings as long as they are not siblings.
MD024:
siblings_only: true
MD033:
allowed_elements:
- math
- mi
- mn
- mo
- mrow
- msup
- div
- span
- style
- sub
- sup
Loading

0 comments on commit aab0907

Please sign in to comment.