Last active
April 29, 2024 11:22
-
-
Save h1dd3nsn1p3r/d9e62fb66fa90c9a65a97f8adbad5990 to your computer and use it in GitHub Desktop.
EditorConfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# editorconfig.org | |
# Ref: https://editorconfig.org/ | |
# top-most EditorConfig file | |
root = true | |
[*] | |
indent_style = tab | |
tab_width = 2 | |
indent_size = 2 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
[*.md] | |
trim_trailing_whitespace = false | |
[*.{js, jsx, ts, tsx, mjs, cjs, cts, mts}] | |
indent_style = tab | |
tab_width = 2 | |
indent_size = 2 | |
[*.{svelte, vue}] | |
indent_style = tab | |
tab_width = 2 | |
indent_size = 2 | |
[*.json] | |
indent_style = tab | |
tab_width = 2 | |
indent_size = 2 | |
[*.{css, scss, sass}] | |
indent_style = tab | |
tab_width = 2 | |
indent_size = 2 | |
[*.php] | |
indent_style = tab | |
tab_width = 2 | |
indent_size = 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment