mirror of
https://github.com/TRaSH-Guides/Guides.git
synced 2026-01-31 13:59:26 -06:00
* Add more extensions to editorconfig
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* feat(editorconfig): update indent size
* Revert "feat(editorconfig): update indent size"
This reverts commit 30e5918efe.
* style: 💄 format json files
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* style: 💄 format yaml files
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* style: 💄 format md files
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* style: 💄 format other files
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* style: 💄 format md files
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* fix: 🐛 markdownlint fixes
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* fix: 🐛 markdownlint fixes
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* fix: 🐛 markdownlint fixes
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* fix: 🐛 editorconfig lint fixes
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* feat: 🚀 deploy preview
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* feat: 🚀 deploy preview
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* feat: 🚀 deploy preview
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* revert: 🔥 remove deploy preview
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* fix: 🐛 fix incorrect prior merges
Signed-off-by: Eric Nemchik <eric@nemchik.com>
* style: 💄 change json to 2 spaces
Signed-off-by: GitHub <noreply@github.com>
* style: 💄 format json to 2 spaces
Signed-off-by: GitHub <noreply@github.com>
* update(formatting/py): run pep8 formatting
---------
Signed-off-by: Eric Nemchik <eric@nemchik.com>
Signed-off-by: GitHub <noreply@github.com>
Co-authored-by: FonduemangVI <15520607+FonduemangVI@users.noreply.github.com>
Co-authored-by: FonduemangVI <michael.thomas@vualtlabs1226.com>
Co-authored-by: zakary <zak@ary.dev>
58 lines
829 B
INI
58 lines
829 B
INI
# EditorConfig is awesome: https://EditorConfig.org
|
|
|
|
# top-most EditorConfig file
|
|
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.{css}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
|
|
[*.{htm,html}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
|
|
[*.js]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
|
|
[*.{json,jsonc,webmanifest}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
|
|
[*.md]
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
|
|
[*.py]
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
|
|
[*.sh]
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = lf
|
|
|
|
[*.xml]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|
|
|
|
[*.{yaml,yml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
end_of_line = lf
|