-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.editorconfig
42 lines (39 loc) · 1.25 KB
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# ___ ____ ____ __ _
# _ __ ___ __ _ ___ / _ \/ ___| / ___|___ _ __ / _(_) __ _
#| '_ ` _ \ / _` |/ __| | | \___ \ | | / _ \| '_ \| |_| |/ _` |
#| | | | | | (_| | (__| |_| |___) | | |__| (_) | | | | _| | (_| |
#|_| |_| |_|\__,_|\___|\___/|____/ \____\___/|_| |_|_| |_|\__, |
# |___/
#
# macOS Config v0.0.3
# https://maccfg.com
#
# Copyright (c) Sebastien Rousseau 2022. All rights reserved
# Licensed under the MIT license
#
# http://editorconfig.org
#
# An .editorconfig file describes minor formatting tweaks
# to apply to text files to ensure consistent formatting
# in a project with multiple developers.
#
# Plugins exist to allow editors / IDEs to automatically apply
# these tweaks to a project when an .editorconfig file is
# found in the project's root directory.
#
# Plugins
# Sublime - https://packagecontrol.io/packages/EditorConfig
# IntelliJ - https://plugins.jetbrains.com/plugin/7294
# (most other IDEs/Editors - Google it)
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
[Makefile]
indent_style = tab