# EditorConfig helps maintain consistent coding styles across different editors and IDEs # editorconfig.org root = true # All files [*] charset = utf-8 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true # JavaScript, TypeScript, JSON [*.{js,jsx,ts,tsx,json}] indent_style = space indent_size = 2 # Markdown [*.md] trim_trailing_whitespace = false max_line_length = off # YAML [*.{yml,yaml}] indent_style = space indent_size = 2 # Shell scripts [*.sh] indent_style = space indent_size = 2 end_of_line = lf