2017-05-27 04:52:59 +00:00
|
|
|
# .editorconfig -- settings for consistent coding style conventions
|
|
|
|
# Copyright (C) 2017 Olaf Meeuwissen
|
|
|
|
#
|
|
|
|
# License: GPL-3.0+
|
|
|
|
|
|
|
|
# Your editor may need a plugin for this configuration to take effect.
|
|
|
|
# See http://editorconfig.org/#download for details.
|
|
|
|
|
|
|
|
root = true ; look no further
|
2017-05-27 05:27:22 +00:00
|
|
|
|
|
|
|
[*]
|
2017-05-27 06:22:15 +00:00
|
|
|
charset = utf-8
|
2017-05-27 04:57:01 +00:00
|
|
|
insert_final_newline = true
|
2017-05-27 05:27:22 +00:00
|
|
|
trim_trailing_whitespace = true
|
2019-12-14 08:13:54 +00:00
|
|
|
|
|
|
|
[backend/escl/*]
|
|
|
|
indent_size = 4
|
|
|
|
indent_style = space
|