• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1###############################################################################
2# Unity Project - A Test Framework for C
3# .editorconfig - F. Zahn 2019
4###############################################################################
5
6# This is the topmost .editorconfig file
7root = true
8
9# Settings that apply to all languages / files
10[*]
11charset = utf-8
12indent_size = 4
13indent_style = space
14insert_final_newline = true
15trim_trailing_whitespace = true
16
17[*.md]
18trim_trailing_whitespace = false
19
20[*.txt]
21trim_trailing_whitespace = false
22
23[*.rb]
24indent_size = 2
25
26[*.yml]
27indent_size = 2
28