Skip to content

Instantly share code, notes, and snippets.

@h1dd3nsn1p3r
Last active April 29, 2024 11:22
Show Gist options
  • Save h1dd3nsn1p3r/d9e62fb66fa90c9a65a97f8adbad5990 to your computer and use it in GitHub Desktop.
Save h1dd3nsn1p3r/d9e62fb66fa90c9a65a97f8adbad5990 to your computer and use it in GitHub Desktop.
EditorConfig
# 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