blob: e7d5cfeddcbfdd12d8822cd6bb809fc7a0d03bea [file] [log] [blame]
Leela vadlamudia3845a92020-12-01 13:04:53 +05301# Root editor config file
2root = true
3
4# Common settings
5[*]
6end_of_line = lf
7insert_final_newline = true
8trim_trailing_whitespace = true
9charset = utf-8
10
11# python, js indentation settings
barredterra2c160362024-02-29 17:08:25 +010012[{*.py,*.js,*.vue,*.css,*.scss,*.html}]
Leela vadlamudia3845a92020-12-01 13:04:53 +053013indent_style = tab
14indent_size = 4
barredterra2c160362024-02-29 17:08:25 +010015max_line_length = 110
16
17# JSON files - mostly doctype schema files
18[{*.json}]
19insert_final_newline = false
20indent_style = space
21indent_size = 2