mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
32 lines
460 B
INI
32 lines
460 B
INI
|
|
# EditorConfig helps maintain consistent coding styles
|
||
|
|
# across different editors and IDEs
|
||
|
|
root = true
|
||
|
|
|
||
|
|
[*]
|
||
|
|
charset = utf-8
|
||
|
|
indent_style = space
|
||
|
|
end_of_line = lf
|
||
|
|
insert_final_newline = true
|
||
|
|
trim_trailing_whitespace = true
|
||
|
|
|
||
|
|
# Python files
|
||
|
|
[*.py]
|
||
|
|
indent_size = 4
|
||
|
|
|
||
|
|
# JavaScript/TypeScript files
|
||
|
|
[*.js]
|
||
|
|
indent_size = 2
|
||
|
|
|
||
|
|
[*.ts]
|
||
|
|
indent_size = 2
|
||
|
|
|
||
|
|
# YAML files
|
||
|
|
[*.yaml]
|
||
|
|
indent_size = 2
|
||
|
|
|
||
|
|
[*.yml]
|
||
|
|
indent_size = 2
|
||
|
|
|
||
|
|
# Markdown files
|
||
|
|
[*.md]
|
||
|
|
trim_trailing_whitespace = false
|