Leela vadlamudi | a3845a9 | 2020-12-01 13:04:53 +0530 | [diff] [blame] | 1 | # Root editor config file |
| 2 | root = true |
| 3 | |
| 4 | # Common settings |
| 5 | [*] |
| 6 | end_of_line = lf |
| 7 | insert_final_newline = true |
| 8 | trim_trailing_whitespace = true |
| 9 | charset = utf-8 |
| 10 | |
| 11 | # python, js indentation settings |
barredterra | 2c16036 | 2024-02-29 17:08:25 +0100 | [diff] [blame] | 12 | [{*.py,*.js,*.vue,*.css,*.scss,*.html}] |
Leela vadlamudi | a3845a9 | 2020-12-01 13:04:53 +0530 | [diff] [blame] | 13 | indent_style = tab |
| 14 | indent_size = 4 |
barredterra | 2c16036 | 2024-02-29 17:08:25 +0100 | [diff] [blame] | 15 | max_line_length = 110 |
| 16 | |
| 17 | # JSON files - mostly doctype schema files |
| 18 | [{*.json}] |
| 19 | insert_final_newline = false |
| 20 | indent_style = space |
| 21 | indent_size = 2 |