Files
Guides/.editorconfig
Eric Nemchik ac0adfd0af chore(editorconfig): Add more extensions (#1410)
* 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>
2024-05-11 23:04:29 +02:00

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