Skip to content
Snippets Groups Projects
.editorconfig 411 B
Newer Older
# top-most EditorConfig file
root = true

# 4 space indentation only for python
[*.py]
indent_style = space
indent_size = 4

# JavaScript
[*.js]
indent_style = space
indent_size = 2

# JSON
[*.json]
indent_style = space
indent_size = 2

# SHELL
[*.sh]
indent_style = space
indent_size = 4

# Tab indentation (no size specified)
[Makefile]
indent_style = tab

# YAML
[*.yml]
indent_style = space
indent_size = 2