-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.editorconfig
41 lines (38 loc) · 1.19 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
#
# ___ _ ___ _
# | _ \__ _ _______ __ _____ _ _ __| | / __|___ _ _ ___ _ _ __ _| |_ ___ _ _
# | _/ _` (_-<_-< V V / _ \ '_/ _` | | (_ / -_) ' \/ -_) '_/ _` | _/ _ \ '_|
# |_| \__,_/__/__/\_/\_/\___/_| \__,_| \___\___|_||_\___|_| \__,_|\__\___/_|
#
# Password Generator
# https://password-generator.pro/
#
# Copyright (c) Sebastien Rousseau 2022 - 2023. 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