Files
oam/examples/dotfiles/.editorconfig
2024-03-24 11:48:24 +01:00

43 lines
974 B
INI

# EditorConfig is awesome: https://EditorConfig.org
# Config file specs: https://spec.editorconfig.org
# This shall be the top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
# Match multiple files with brace expansion notation
# Set the default charset and spelling check language
[*.{js,py}]
charset = utf-8
spelling_language = en-US
# 4 spaces indentation
[*.py]
indent_style = space
indent_size = 4
# Tab indentation (no size specified)
[Makefile]
indent_style = tab
# Indentation override for all JS under lib directory
[lib/**.js]
indent_style = space
indent_size = 2
# Matches the exact files either package.json or .travis.yml
# Tab indentation (size specified)
[{package.json,.travis.yml}]
indent_style = tab
tab_width = 4
# Allow the use of double spaces for line breaks
# Stop using spell checking
[*.md]
trim_trailing_whitespace = false
spelling_language = unset