forked from SkyrimScripting/SKSE_Template_HelloWorld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-format
28 lines (27 loc) · 782 Bytes
/
.clang-format
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
---
# This file is optional but helps me ensure the same
# code style is used in all templates.
#
# You can find out more about these configuration files at:
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
#
# To use this file, configure your IDE to use "clang-format".
# This will be different for each IDE.
#
# You can download "clang-format" by installing LLVM from here:
# https://github.com/llvm/llvm-project/releases
#
# ^ look for the latest release which has a win64.exe installer
# and be sure to choose the option to add LLVM to your PATH
# when installing
#
UseTab: Never
TabWidth: '4'
IndentWidth: '4'
BasedOnStyle: Google
AccessModifierOffset: -4
ColumnLimit: 120
NamespaceIndentation: All
IndentPPDirectives: BeforeHash
FixNamespaceComments: false
...